Changeset 215 in dev for trunk/abdev/BasicCompiler32
- Timestamp:
- Jul 17, 2007, 3:44:11 PM (17 years ago)
- Location:
- trunk/abdev/BasicCompiler32
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler32/BasicCompiler.vcproj
r206 r215 1243 1243 </Filter> 1244 1244 <Filter 1245 Name=" ApplicationClasses"1245 Name="Langauge Classes" 1246 1246 > 1247 1247 <File … … 1278 1278 </File> 1279 1279 <File 1280 RelativePath="..\BasicCompiler_Common\src\Namespace.cpp" 1281 > 1282 </File> 1283 <File 1280 1284 RelativePath="..\BasicCompiler_Common\src\NamespaceSupporter.cpp" 1281 1285 > … … 1307 1311 <File 1308 1312 RelativePath="..\BasicCompiler_Common\src\Variable.cpp" 1313 > 1314 </File> 1315 </Filter> 1316 <Filter 1317 Name="Common Classes" 1318 > 1319 <File 1320 RelativePath="..\BasicCompiler_Common\src\BoostSerializationSupport.cpp" 1309 1321 > 1310 1322 </File> … … 1360 1372 </Filter> 1361 1373 <Filter 1362 Name=" ApplicationClasses"1374 Name="Language Classes" 1363 1375 > 1364 1376 <File … … 1403 1415 </File> 1404 1416 <File 1417 RelativePath="..\BasicCompiler_Common\include\Namespace.h" 1418 > 1419 </File> 1420 <File 1405 1421 RelativePath="..\BasicCompiler_Common\include\NamespaceSupporter.h" 1406 1422 > … … 1440 1456 <File 1441 1457 RelativePath="..\BasicCompiler_Common\include\Variable.h" 1458 > 1459 </File> 1460 </Filter> 1461 <Filter 1462 Name="Common Classes" 1463 > 1464 <File 1465 RelativePath="..\BasicCompiler_Common\include\BoostSerializationSupport.h" 1466 > 1467 </File> 1468 <File 1469 RelativePath="..\BasicCompiler_Common\include\Hashmap.h" 1470 > 1471 </File> 1472 <File 1473 RelativePath="..\BasicCompiler_Common\include\logger.h" 1442 1474 > 1443 1475 </File> -
trunk/abdev/BasicCompiler32/MakePeHdr.cpp
r212 r215 206 206 compiler.GetMeta().GetDllProcs().Iterator_Init(); 207 207 208 /* 208 209 209 if( !compiler.GetMeta().WriteXml( Jenga::Common::Environment::GetAppDir() + "\\meta_test.xml" ) ) 210 210 { … … 216 216 MessageBox(0,"XML読み込みに失敗","test",0); 217 217 } 218 */ 218 /* 219 219 if( !compiler.GetMeta().WriteBinaly( Jenga::Common::Environment::GetAppDir() + "\\meta_test.dat" ) ) 220 220 { … … 226 226 MessageBox(0,"バイナリ読み込みに失敗","test",0); 227 227 } 228 if( !compiler.GetMeta().WriteText( Jenga::Common::Environment::GetAppDir() + "\\meta_test.dat" ) ) 229 { 230 MessageBox(0,"バイナリ書き込みに失敗","test",0); 231 } 232 MetaImpl *pTempMeta = new MetaImpl(); 233 if( !pTempMeta->ReadText( Jenga::Common::Environment::GetAppDir() + "\\meta_test.dat" ) ) 234 { 235 MessageBox(0,"バイナリ読み込みに失敗","test",0); 236 }*/ 228 237 compiler.GetMeta() = (*pTempMeta); 229 238 -
trunk/abdev/BasicCompiler32/stdafx.h
r214 r215 1 #pragma warning(disable : 4996)1 #pragma once 2 2 3 3 #include <string> … … 15 15 16 16 //boost libraries 17 #pragma warning(push) 18 #pragma warning(disable : 4996) 17 19 #include <boost/foreach.hpp> 18 19 #include <jenga/include/common/BoostSerializationSupport.h> 20 #pragma warning(pop) 20 21 21 22 #include "../BasicCompiler_Common/common.h" 22 23 #include <Class.h>24 #include <Compiler.h>25 #include <NamespaceSupporter.h>
Note:
See TracChangeset
for help on using the changeset viewer.