Changeset 529 in dev for trunk/ab5.0/jenga


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

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

Location:
trunk/ab5.0/jenga
Files:
1 deleted
1 edited
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/jenga/include/common/Binary.h

    r517 r529  
    11#pragma once
     2
     3namespace Jenga{ namespace Common{
    24
    35
     
    1416    template<class Archive> void load(Archive& ar, const unsigned int version)
    1517    {
    16         trace_for_serialize( "serializing(load) - Binary" );
    17 
    1818        std::string _buffer;
    1919        ar & BOOST_SERIALIZATION_NVP( _buffer );
     
    3232    template<class Archive> void save(Archive& ar, const unsigned int version) const
    3333    {
    34         trace_for_serialize( "serializing(save) - Binary" );
    35 
    3634        // 保存準備
    3735        char *tempCode = (char *)calloc( (size+1) * 3, 1 );
     
    164162    }
    165163};
     164
     165
     166}}
  • trunk/ab5.0/jenga/projects/jenga/jenga.vcproj

    r520 r529  
    344344            >
    345345            <File
     346                RelativePath="..\..\include\common\Binary.h"
     347                >
     348            </File>
     349            <File
    346350                RelativePath="..\..\include\common\BoostSerializationSupport.h"
    347351                >
Note: See TracChangeset for help on using the changeset viewer.