Ignore:
Timestamp:
Sep 24, 2007, 2:58:10 PM (17 years ago)
Author:
dai_9181
Message:

コンパイラ組み込みテンプレートエンジンを実装。
静的リンクライブラリ、デバッグ情報の内部形式をテキストからバイナリに変更した。

File:
1 edited

Legend:

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

    r288 r322  
    1010#include <Variable.h>
    1111#include <Const.h>
     12#include <Delegate.h>
    1213
    1314class Meta
     
    4344    ProcPointers procPointers;
    4445
     46    // デリゲート
     47    Delegates delegates;
     48
    4549    // XMLシリアライズ用
    4650private:
     
    6064        ar & BOOST_SERIALIZATION_NVP( typeDefs );
    6165        ar & BOOST_SERIALIZATION_NVP( procPointers );
     66        ar & BOOST_SERIALIZATION_NVP( delegates );
    6267    }
    6368
     
    150155    }
    151156
    152     // 関数ポインタ
    153157    ProcPointers &GetProcPointers()
    154158    {
    155159        return procPointers;
    156160    }
     161
     162    Delegates &GetDelegates()
     163    {
     164        return delegates;
     165    }
    157166};
Note: See TracChangeset for help on using the changeset viewer.