Changeset 529 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/include
- Timestamp:
- May 2, 2008, 11:43:33 AM (17 years ago)
- Location:
- trunk/ab5.0/abdev/BasicCompiler_Common/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/include/NativeCode.h
r520 r529 196 196 typedef std::vector<SourceLine> SourceLines; 197 197 198 class NativeCode : public Binary198 class NativeCode : public Jenga::Common::Binary 199 199 { 200 200 // リンカで解決しなければならないスケジュール … … 211 211 trace_for_serialize( "serializing(load) - NativeCode" ); 212 212 213 ar & BOOST_SERIALIZATION_BASE_OBJECT_NVP( Binary );213 ar & BOOST_SERIALIZATION_BASE_OBJECT_NVP( Jenga::Common::Binary ); 214 214 ar & BOOST_SERIALIZATION_NVP( schedules ); 215 215 ar & BOOST_SERIALIZATION_NVP( sourceLines ); … … 218 218 public: 219 219 NativeCode() 220 : Binary()220 : Jenga::Common::Binary() 221 221 { 222 222 } 223 223 NativeCode( const NativeCode &nativeCode ) 224 : Binary()224 : Jenga::Common::Binary() 225 225 { 226 226 PutEx( nativeCode ); 227 227 } 228 228 NativeCode( const char *codeBuffer, int size ) 229 : Binary( codeBuffer, size )229 : Jenga::Common::Binary( codeBuffer, size ) 230 230 { 231 231 } -
trunk/ab5.0/abdev/BasicCompiler_Common/include/Variable.h
r524 r529 231 231 { 232 232 public: 233 Binary initAreaBuffer;233 Jenga::Common::Binary initAreaBuffer; 234 234 235 235 // XMLシリアライズ用
Note:
See TracChangeset
for help on using the changeset viewer.