Changeset 201 in dev
- Timestamp:
- Jul 2, 2007, 9:55:37 AM (17 years ago)
- Location:
- trunk/abdev
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler32/MakePeHdr.cpp
r199 r201 193 193 compiler.GetMeta().GetClasses().GetAllClassInfo(); 194 194 195 if( !compiler.GetMeta(). AutoWrite( Jenga::Common::Environment::GetAppDir() + "\\meta_test.xml" ) )195 if( !compiler.GetMeta().Write( Jenga::Common::Environment::GetAppDir() + "\\meta_test.xml" ) ) 196 196 { 197 ts(0); 197 MessageBox(0,"XML書き込みに失敗","test",0); 198 } 199 MetaImpl tempMeta; 200 if( !tempMeta.Read( Jenga::Common::Environment::GetAppDir() + "\\meta_test.xml" ) ) 201 { 202 MessageBox(0,"XML読み込みに失敗","test",0); 198 203 } 199 204 -
trunk/abdev/BasicCompiler_Common/DebugMiddleFile.cpp
r193 r201 34 34 (*p)+=lstrlen(buffer+(*p))+1; 35 35 36 type.Set Index( (LONG_PTR)compiler.GetMeta().GetClasses().Find(szClassName) );36 type.SetClassPtr( compiler.GetMeta().GetClasses().Find(szClassName) ); 37 37 } 38 38 else{ -
trunk/abdev/BasicCompiler_Common/include/MetaImpl.h
r193 r201 9 9 #include <TypeDef.h> 10 10 11 class MetaImpl : public Meta 11 class MetaImpl : public Meta, public Jenga::Common::BoostXmlSupport<MetaImpl> 12 12 { 13 13 // 名前空間
Note:
See TracChangeset
for help on using the changeset viewer.