Changeset 212 in dev for trunk/abdev/BasicCompiler32


Ignore:
Timestamp:
Jul 16, 2007, 11:35:35 PM (17 years ago)
Author:
dai_9181
Message:

BoostXmlSupportクラスの名前をBoostSerializationSupportに変更

Location:
trunk/abdev/BasicCompiler32
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler32/MakePeHdr.cpp

    r210 r212  
    206206    compiler.GetMeta().GetDllProcs().Iterator_Init();
    207207
    208 
    209     if( !compiler.GetMeta().Write( Jenga::Common::Environment::GetAppDir() + "\\meta_test.xml" ) )
     208/*
     209    if( !compiler.GetMeta().WriteXml( Jenga::Common::Environment::GetAppDir() + "\\meta_test.xml" ) )
    210210    {
    211211        MessageBox(0,"XML書き込みに失敗","test",0);
    212212    }
    213213    MetaImpl *pTempMeta = new MetaImpl();
    214     if( !pTempMeta->Read( Jenga::Common::Environment::GetAppDir() + "\\meta_test.xml" ) )
     214    if( !pTempMeta->ReadXml( Jenga::Common::Environment::GetAppDir() + "\\meta_test.xml" ) )
    215215    {
    216216        MessageBox(0,"XML読み込みに失敗","test",0);
     217    }
     218*/
     219    if( !compiler.GetMeta().WriteBinaly( Jenga::Common::Environment::GetAppDir() + "\\meta_test.dat" ) )
     220    {
     221        MessageBox(0,"バイナリ書き込みに失敗","test",0);
     222    }
     223    MetaImpl *pTempMeta = new MetaImpl();
     224    if( !pTempMeta->ReadBinaly( Jenga::Common::Environment::GetAppDir() + "\\meta_test.dat" ) )
     225    {
     226        MessageBox(0,"バイナリ読み込みに失敗","test",0);
    217227    }
    218228    compiler.GetMeta() = (*pTempMeta);
  • trunk/abdev/BasicCompiler32/stdafx.h

    r206 r212  
    1515#include <boost/foreach.hpp>
    1616
    17 #include <jenga/include/common/BoostXmlSupport.h>
     17#include <jenga/include/common/BoostSerializationSupport.h>
    1818
    1919#include "../BasicCompiler_Common/common.h"
     20
     21#include <Class.h>
     22#include <Compiler.h>
     23#include <NamespaceSupporter.h>
Note: See TracChangeset for help on using the changeset viewer.