Ignore:
Timestamp:
Jul 21, 2007, 4:46:33 AM (17 years ago)
Author:
dai_9181
Message:
 
File:
1 edited

Legend:

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

    r206 r224  
    44#include <NamespaceSupporter.h>
    55#include <MetaImpl.h>
     6#include <DataTable.h>
    67
    78class Compiler
    89{
    9     // ネイティブコード
    10     NativeCode nativeCode;
    11 
    1210    // 名前空間サポート
    1311    NamespaceSupporter namespaceSupporter;
     
    1614    MetaImpl metaImpl;
    1715
     16    // データテーブル
     17    DataTable dataTable;
     18
    1819public:
    19     NativeCode &GetNativeCode()
    20     {
    21         return nativeCode;
    22     }
    2320
    2421    NamespaceSupporter &GetNamespaceSupporter()
     
    3229    }
    3330
     31    DataTable &GetDataTable()
     32    {
     33        return dataTable;
     34    }
     35
    3436    static bool StringToType( const std::string &typeName, Type &type );
    3537    static const std::string TypeToString( const Type &type );
Note: See TracChangeset for help on using the changeset viewer.