source: dev/trunk/abdev/BasicCompiler_Common/include/BoostSerializationSupport.h@ 256

Last change on this file since 256 was 256, checked in by dai_9181, 17 years ago

MetaImplを廃止し、Metaにした。
ObjectModuleクラス、Linkerクラスを用意。

File size: 1.1 KB
Line 
1#pragma once
2
3#include <vector>
4#include <string>
5#include <fstream>
6#include <sstream>
7
8#include <boost/serialization/serialization.hpp>
9#include <boost/serialization/nvp.hpp>
10#include <boost/serialization/export.hpp>
11
12namespace Jenga{
13namespace Common{
14
15using namespace std;
16
17template<class T_xml_schema> class BoostSerializationSupport{
18 virtual const char *RootTagName() const = 0;
19
20 void echo( const char *msg ) const;
21
22public:
23 bool ReadXml( istream& ifs, bool isShowExceptionMessage = true );
24 bool WriteXml( ostream& ofs, bool isShowExceptionMessage = true ) const;
25 bool ReadXml( const string &xmlFilePath, bool isShowExceptionMessage = true );
26 bool WriteXml( const string &xmlFilePath, bool isShowExceptionMessage = true ) const;
27
28 bool ReadBinary( const string &filePath, bool isShowExceptionMessage = true );
29 bool WriteBinary( const string &filePath, bool isShowExceptionMessage = true ) const;
30
31 bool ReadText( const string &filePath, bool isShowExceptionMessage = true );
32 bool WriteText( const string &filePath, bool isShowExceptionMessage = true ) const;
33
34 bool ReadXmlFromString( const string &xmlBuffer );
35};
36
37
38}}
Note: See TracBrowser for help on using the repository browser.