Changeset 90 in dev for BasicCompiler_Common/Procedure.h


Ignore:
Timestamp:
Apr 7, 2007, 3:02:29 PM (17 years ago)
Author:
dai_9181
Message:

実行時型情報の生成にほぼ対応した。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • BasicCompiler_Common/Procedure.h

    r89 r90  
    101101    bool isExport;
    102102    bool isSystem;
     103    bool isAutoGeneration;
    103104    bool isCompiled;
    104105
     
    114115      isExport( isExport ),
    115116      isSystem( false ),
     117      isAutoGeneration( false ),
    116118      isCompiled( false ),
    117119      pNextData( NULL )
     
    176178    {
    177179        return isSystem;
     180    }
     181    void ThisIsAutoGenerationProc(){
     182        isAutoGeneration = true;
     183    }
     184    bool IsAutoGeneration(){
     185        return isAutoGeneration;
    178186    }
    179187    void CompleteCompile(){
Note: See TracChangeset for help on using the changeset viewer.