Changeset 256 in dev for trunk/abdev/BasicCompiler_Common/src/BoostSerializationSupport.cpp
- Timestamp:
- Aug 1, 2007, 11:19:01 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/src/BoostSerializationSupport.cpp
r215 r256 17 17 #include <BoostSerializationSupport.h> 18 18 19 #include <MetaImpl.h>20 #include <logger.h>21 22 19 #include <windows.h> 23 20 … … 119 116 } 120 117 121 template<class T_xml_schema> bool BoostSerializationSupport<T_xml_schema>::ReadBina ly( const string &filePath, bool isShowExceptionMessage )118 template<class T_xml_schema> bool BoostSerializationSupport<T_xml_schema>::ReadBinary( const string &filePath, bool isShowExceptionMessage ) 122 119 { 123 120 // 入力アーカイブの作成 … … 157 154 return true; 158 155 } 159 template<class T_xml_schema> bool BoostSerializationSupport<T_xml_schema>::WriteBina ly( const string &filePath, bool isShowExceptionMessage ) const156 template<class T_xml_schema> bool BoostSerializationSupport<T_xml_schema>::WriteBinary( const string &filePath, bool isShowExceptionMessage ) const 160 157 { 161 158 // 出力アーカイブの作成 … … 301 298 302 299 303 template class Jenga::Common::BoostSerializationSupport<MetaImpl>; 300 #include <Compiler.h> 301 #include <logger.h> 302 303 template class Jenga::Common::BoostSerializationSupport<ObjectModule>; 304 304 template class Jenga::Common::BoostSerializationSupport<LoggerSetting>;
Note:
See TracChangeset
for help on using the changeset viewer.