Changeset 264 in dev for trunk/abdev/BasicCompiler_Common/include
- Timestamp:
- Aug 6, 2007, 9:31:22 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/include/BoostSerializationSupport.h
r256 r264 23 23 bool ReadXml( istream& ifs, bool isShowExceptionMessage = true ); 24 24 bool WriteXml( ostream& ofs, bool isShowExceptionMessage = true ) const; 25 bool ReadXml( const st ring &xmlFilePath, bool isShowExceptionMessage = true );26 bool WriteXml( const st ring &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; 27 27 28 bool ReadBinary( const st ring &filePath, bool isShowExceptionMessage = true );29 bool WriteBinary( const st ring &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; 30 30 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; 33 35 34 bool ReadXmlFromString( const st ring &xmlBuffer );36 bool ReadXmlFromString( const std::string &xmlBuffer ); 35 37 }; 36 38
Note:
See TracChangeset
for help on using the changeset viewer.