Ignore:
Timestamp:
Aug 1, 2007, 11:19:01 PM (17 years ago)
Author:
dai_9181
Message:

MetaImplを廃止し、Metaにした。
ObjectModuleクラス、Linkerクラスを用意。

File:
1 moved

Legend:

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

    r255 r256  
    1111#include <Const.h>
    1212
    13 class MetaImpl : public Jenga::Common::BoostSerializationSupport<MetaImpl>
     13class Meta
    1414{
    1515    // 名前空間
     
    4545    // XMLシリアライズ用
    4646private:
    47     virtual const char *RootTagName() const
    48     {
    49         return "metaImpl";
    50     }
    5147    friend class boost::serialization::access;
    5248    template<class Archive> void serialize(Archive& ar, const unsigned int version)
    5349    {
    54         trace_for_serialize( "serializing - MetaImpl" );
     50        trace_for_serialize( "serializing - Meta" );
    5551
    5652        ar & BOOST_SERIALIZATION_NVP( namespaceScopesCollection );
     
    6965
    7066public:
    71     MetaImpl()
     67    Meta()
    7268        : classesImpl()
    7369        , pNowClassesForDebugger( &classesImpl )
Note: See TracChangeset for help on using the changeset viewer.