]> git.tdb.fi Git - builder.git/blobdiff - source/vcxprojectfile.h
Generate GUIDs for Visual C++ project files
[builder.git] / source / vcxprojectfile.h
index b5a90d1f0b1b01840d3f6750977348e51544b492..ff3aba13ba316242bbfc06efdd4df09ebc209055 100644 (file)
@@ -5,10 +5,15 @@
 
 class VcxProjectFile: public FileTarget
 {
+private:
+       std::string guid;
+
 public:
        VcxProjectFile(Builder &, const SourcePackage &);
 
        virtual const char *get_type() const { return "VcxProjectFile"; }
+
+       const std::string &get_guid() const { return guid; }
 };
 
 #endif