X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fvcxprojectfile.h;h=268d4bbb64a42c78d4bb487c82bdff4300dc42d5;hb=bde362811368647047f3ca13bdec596f092ecffe;hp=b5a90d1f0b1b01840d3f6750977348e51544b492;hpb=84da3f6c94dbe7e36aaf088890fda5fcf3b3efb0;p=builder.git diff --git a/source/vcxprojectfile.h b/source/vcxprojectfile.h index b5a90d1..268d4bb 100644 --- a/source/vcxprojectfile.h +++ b/source/vcxprojectfile.h @@ -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 char *get_type() const override { return "VcxProjectFile"; } + + const std::string &get_guid() const { return guid; } }; #endif