Changeset 529 in dev for trunk/ab5.0/jenga
- Timestamp:
- May 2, 2008, 11:43:33 AM (17 years ago)
- 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 1 1 #pragma once 2 3 namespace Jenga{ namespace Common{ 2 4 3 5 … … 14 16 template<class Archive> void load(Archive& ar, const unsigned int version) 15 17 { 16 trace_for_serialize( "serializing(load) - Binary" );17 18 18 std::string _buffer; 19 19 ar & BOOST_SERIALIZATION_NVP( _buffer ); … … 32 32 template<class Archive> void save(Archive& ar, const unsigned int version) const 33 33 { 34 trace_for_serialize( "serializing(save) - Binary" );35 36 34 // 保存準備 37 35 char *tempCode = (char *)calloc( (size+1) * 3, 1 ); … … 164 162 } 165 163 }; 164 165 166 }} -
trunk/ab5.0/jenga/projects/jenga/jenga.vcproj
r520 r529 344 344 > 345 345 <File 346 RelativePath="..\..\include\common\Binary.h" 347 > 348 </File> 349 <File 346 350 RelativePath="..\..\include\common\BoostSerializationSupport.h" 347 351 >
Note:
See TracChangeset
for help on using the changeset viewer.