Changeset 294 in dev for trunk/abdev/BasicCompiler_Common/include
- Timestamp:
- Aug 22, 2007, 11:23:28 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/include/Compiler.h
r279 r294 24 24 , pNowObjectModule( pObjectModule ) 25 25 , targetModuleType( Exe ) 26 , isCore( false ) 26 27 { 27 28 } … … 110 111 111 112 113 // コアモジュールかどうか 114 bool isCore; 115 void SetCoreMark( bool isCore ) 116 { 117 this->isCore = isCore; 118 } 119 bool IsCore() const 120 { 121 return isCore; 122 } 123 124 112 125 static bool StringToType( const std::string &typeName, Type &type ); 113 126 static const std::string TypeToString( const Type &type );
Note:
See TracChangeset
for help on using the changeset viewer.