]> git.tdb.fi Git - builder.git/blob - source/vcxprojectfile.h
ff3aba13ba316242bbfc06efdd4df09ebc209055
[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 private:
9         std::string guid;
10
11 public:
12         VcxProjectFile(Builder &, const SourcePackage &);
13
14         virtual const char *get_type() const { return "VcxProjectFile"; }
15
16         const std::string &get_guid() const { return guid; }
17 };
18
19 #endif