Changeset 459 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/include
- Timestamp:
- Mar 23, 2008, 10:38:38 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/include/Compiler.h
r407 r459 14 14 class Compiler 15 15 { 16 public: 17 // ターゲット 18 enum TargetModuleType 19 { 20 Exe, 21 Dll, 22 StaticLibrary, 23 }; 24 25 private: 16 26 // モジュール名 17 27 std::string moduleName; 28 29 // モジュール タイプ 30 TargetModuleType targetModuleType; 31 32 // デバッグ ビルドかどうか 33 bool isDebug; 18 34 19 35 // 名前空間サポート … … 30 46 , pNowObjectModule( pObjectModule ) 31 47 , targetModuleType( Exe ) 48 , isDebug( false ) 32 49 , isCore( false ) 33 50 { … … 87 104 } 88 105 89 90 // ターゲット91 enum TargetModuleType92 {93 Exe,94 Dll,95 StaticLibrary,96 };97 98 TargetModuleType targetModuleType;99 100 106 bool IsExe() const 101 107 { … … 127 133 } 128 134 135 void SetDebugMark( bool isDebug ) 136 { 137 this->isDebug = isDebug; 138 } 139 bool IsDebug() const 140 { 141 return isDebug; 142 } 143 129 144 130 145 // コアモジュールかどうか
Note:
See TracChangeset
for help on using the changeset viewer.