Ignore:
Timestamp:
Aug 6, 2007, 9:31:22 AM (17 years ago)
Author:
dai_9181
Message:

デバッグデータとしてオブジェクトモジュールのシリアライズを可能にした(その先の処理はまだ動かない)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler_Common/include/BoostSerializationSupport.h

    r256 r264  
    2323    bool ReadXml( istream& ifs, bool isShowExceptionMessage = true );
    2424    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;
     25    bool ReadXml( const std::string &xmlFilePath, bool isShowExceptionMessage = true );
     26    bool WriteXml( const std::string &xmlFilePath, bool isShowExceptionMessage = true ) const;
    2727
    28     bool ReadBinary( const string &filePath, bool isShowExceptionMessage = true );
    29     bool WriteBinary( const string &filePath, bool isShowExceptionMessage = true ) const;
     28    bool ReadBinary( const std::string &filePath, bool isShowExceptionMessage = true );
     29    bool WriteBinary( const std::string &filePath, bool isShowExceptionMessage = true ) const;
    3030
    31     bool ReadText( const string &filePath, bool isShowExceptionMessage = true );
    32     bool WriteText( const string &filePath, bool isShowExceptionMessage = true ) const;
     31    bool ReadText( const std::string &filePath, bool isShowExceptionMessage = true );
     32    bool WriteText( const std::string &filePath, bool isShowExceptionMessage = true ) const;
     33    bool ReadTextString( const std::string &textString );
     34    bool WriteTextString( std::string &textString ) const;
    3335
    34     bool ReadXmlFromString( const string &xmlBuffer );
     36    bool ReadXmlFromString( const std::string &xmlBuffer );
    3537};
    3638
Note: See TracChangeset for help on using the changeset viewer.