]> git.tdb.fi Git - builder.git/blob - source/vcxprojectfile.h
Add support for generating Visual C++ projects
[builder.git] / source / vcxprojectfile.h
1 #ifndef VCXPROJECTFILE_H_
2 #define VCXPROJECTFILE_H_
3
4 #include "filetarget.h"
5
6 class VcxProjectFile: public FileTarget
7 {
8 public:
9         VcxProjectFile(Builder &, const SourcePackage &);
10
11         virtual const char *get_type() const { return "VcxProjectFile"; }
12 };
13
14 #endif