Changeset 472 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/include
- Timestamp:
- Mar 31, 2008, 12:33:24 PM (17 years ago)
- Location:
- trunk/ab5.0/abdev/BasicCompiler_Common/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/include/Compiler.h
r465 r472 25 25 26 26 private: 27 // ビルド成功のフラグ 28 bool isBuildSuccessful; 29 27 30 // モジュール名 28 31 std::string moduleName; … … 47 50 48 51 Compiler() 49 : pObjectModule( new ObjectModule ) 52 : isBuildSuccessful( false ) 53 , pObjectModule( new ObjectModule ) 50 54 , pNowObjectModule( pObjectModule ) 51 55 , targetModuleType( Exe ) … … 71 75 void StaticLink( ObjectModules &staticLibraries ); 72 76 77 // ビルド成功のフラグ 78 bool IsBuildSuccessful() const 79 { 80 return isBuildSuccessful; 81 } 82 void BuildSuccessful() 83 { 84 isBuildSuccessful = true; 85 } 86 73 87 // モジュール名 74 88 void SetModuleName( const std::string &moduleName ) -
trunk/ab5.0/abdev/BasicCompiler_Common/include/Messenger.h
r465 r472 63 63 public: 64 64 void Output( const ErrorInfo &errorInfo ); 65 void Output( int errorCode, const std::string &keyword, int sourceIndex );66 void Output( int errorCode, const char *keyword, int sourceIndex );65 void Output( int errorCode, const std::string &keyword, int sourceIndex = -1 ); 66 void Output( int errorCode, const char *keyword, int sourceIndex = -1 ); 67 67 void OutputFatalError(); 68 68 -
trunk/ab5.0/abdev/BasicCompiler_Common/include/Program.h
r471 r472 86 86 this->includeDir = includeDir; 87 87 } 88 89 int GetExitCode() const; 88 90 }; 89 91
Note:
See TracChangeset
for help on using the changeset viewer.