Ignore:
Timestamp:
Mar 23, 2008, 11:35:33 AM (16 years ago)
Author:
dai_9181
Message:

smoothieプロジェクトが不要になったため、破棄。

File:
1 edited

Legend:

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

    r459 r461  
    3333    bool isDebug;
    3434
     35    // Unicode対応モジュールかどうか
     36    bool isUnicode;
     37
    3538    // 名前空間サポート
    3639    NamespaceSupporter namespaceSupporter;
     
    4750        , targetModuleType( Exe )
    4851        , isDebug( false )
     52        , isUnicode( false )
    4953        , isCore( false )
    5054    {
     
    142146    }
    143147
     148    void SetUnicodeMark( bool isUnicode )
     149    {
     150        this->isUnicode = isUnicode;
     151    }
     152    bool IsUnicode()
     153    {
     154        return isUnicode;
     155    }
     156
    144157
    145158    // コアモジュールかどうか
Note: See TracChangeset for help on using the changeset viewer.