diff options
Diffstat (limited to 'Source/cmDSPWriter.h')
-rw-r--r-- | Source/cmDSPWriter.h | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/Source/cmDSPWriter.h b/Source/cmDSPWriter.h index bdc2a3b..6021842 100644 --- a/Source/cmDSPWriter.h +++ b/Source/cmDSPWriter.h @@ -20,15 +20,14 @@ */ #ifndef cmDSPMakefile_h #define cmDSPMakefile_h -#ifdef _MSC_VER -#pragma warning ( disable : 4786 ) -#endif +#include "cmStandardIncludes.h" #include "cmMakefile.h" -#include <vector> -class cmDSPMakefile : public cmMakefile +class cmDSPMakefile { public: + cmDSPMakefile(cmMakefile*); + ~cmDSPMakefile(); void OutputDSPFile(); enum BuildType { STATIC_LIBRARY, DLL, EXECUTABLE }; void SetBuildType(BuildType ); @@ -38,6 +37,10 @@ public: { return m_CreatedProjectNames; } + cmMakefile* GetMakefile() + { + return m_Makefile; + } private: std::string m_DSPHeaderTemplate; @@ -64,6 +67,7 @@ private: std::string m_IncludeOptions; std::string m_DebugLibraryOptions; std::string m_ReleaseLibraryOptions; + cmMakefile* m_Makefile; }; #endif |