Ignore:
Timestamp:
Aug 22, 2007, 11:23:28 PM (17 years ago)
Author:
dai_9181
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler_Common/include/Compiler.h

    r279 r294  
    2424        , pNowObjectModule( pObjectModule )
    2525        , targetModuleType( Exe )
     26        , isCore( false )
    2627    {
    2728    }
     
    110111
    111112
     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
    112125    static bool StringToType( const std::string &typeName, Type &type );
    113126    static const std::string TypeToString( const Type &type );
Note: See TracChangeset for help on using the changeset viewer.