Ignore:
Timestamp:
May 2, 2008, 11:43:33 AM (16 years ago)
Author:
dai_9181
Message:

Binaryクラスをjengaプロジェクトに移動した。

Location:
trunk/ab5.0/abdev/BasicCompiler_Common
Files:
3 edited

Legend:

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

    r520 r529  
    196196typedef std::vector<SourceLine> SourceLines;
    197197
    198 class NativeCode : public Binary
     198class NativeCode : public Jenga::Common::Binary
    199199{
    200200    // リンカで解決しなければならないスケジュール
     
    211211        trace_for_serialize( "serializing(load) - NativeCode" );
    212212
    213         ar & BOOST_SERIALIZATION_BASE_OBJECT_NVP( Binary );
     213        ar & BOOST_SERIALIZATION_BASE_OBJECT_NVP( Jenga::Common::Binary );
    214214        ar & BOOST_SERIALIZATION_NVP( schedules );
    215215        ar & BOOST_SERIALIZATION_NVP( sourceLines );
     
    218218public:
    219219    NativeCode()
    220         : Binary()
     220        : Jenga::Common::Binary()
    221221    {
    222222    }
    223223    NativeCode( const NativeCode &nativeCode )
    224         : Binary()
     224        : Jenga::Common::Binary()
    225225    {
    226226        PutEx( nativeCode );
    227227    }
    228228    NativeCode( const char *codeBuffer, int size )
    229         : Binary( codeBuffer, size )
     229        : Jenga::Common::Binary( codeBuffer, size )
    230230    {
    231231    }
  • trunk/ab5.0/abdev/BasicCompiler_Common/include/Variable.h

    r524 r529  
    231231{
    232232public:
    233     Binary initAreaBuffer;
     233    Jenga::Common::Binary initAreaBuffer;
    234234
    235235    // XMLシリアライズ用
  • trunk/ab5.0/abdev/BasicCompiler_Common/src/ObjectModule.cpp

    r527 r529  
    6363using namespace ActiveBasic::Common::Lexical;
    6464
    65 #include <Binary.h>
    6665#include <NativeCode.h>
    6766#include <Source.h>
Note: See TracChangeset for help on using the changeset viewer.