1 #ifndef BOOST_ARCHIVE_BASIC_TEXT_OARCHIVE_HPP
2 #define BOOST_ARCHIVE_BASIC_TEXT_OARCHIVE_HPP
4 // MS compatible compilers support #pragma once
5 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
9 /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
10 // basic_text_oarchive.hpp
12 // (C) Copyright 2002 Robert Ramey - http://www.rrsd.com .
13 // Use, modification and distribution is subject to the Boost Software
14 // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
15 // http://www.boost.org/LICENSE_1_0.txt)
17 // See http://www.boost.org for updates, documentation, and revision history.
19 // archives stored as text - note these ar templated on the basic
20 // stream templates to accommodate wide (and other?) kind of characters
22 // note the fact that on libraries without wide characters, ostream is
23 // is not a specialization of basic_ostream which in fact is not defined
24 // in such cases. So we can't use basic_ostream<OStream::char_type> but rather
25 // use two template parameters
28 #include <boost/config.hpp>
29 #include <boost/pfto.hpp>
30 #include <boost/detail/workaround.hpp>
32 #include <boost/archive/detail/common_oarchive.hpp>
33 #include <boost/serialization/string.hpp>
35 #include <boost/archive/detail/abi_prefix.hpp> // must be the last header
40 /////////////////////////////////////////////////////////////////////////
41 // class basic_text_iarchive - read serialized objects from a input text stream
42 template<class Archive>
43 class basic_text_oarchive :
44 public detail::common_oarchive<Archive>
47 #if BOOST_WORKAROUND(BOOST_MSVC, <= 1300) \
48 || BOOST_WORKAROUND(__BORLANDC__,BOOST_TESTED_AT(0x560))
50 #elif defined(BOOST_MSVC)
51 // for some inexplicable reason insertion of "class" generates compile erro
53 friend detail::interface_oarchive<Archive>;
55 friend class detail::interface_oarchive<Archive>;
63 BOOST_ARCHIVE_OR_WARCHIVE_DECL(void)
70 // default processing - kick back to base class. Note the
71 // extra stuff to get it passed borland compilers
72 typedef detail::common_oarchive<Archive> detail_common_oarchive;
74 void save_override(T & t, BOOST_PFTO int){
75 this->detail_common_oarchive::save_override(t, 0);
78 // start new objects on a new line
79 void save_override(const object_id_type & t, int){
80 this->This()->newline();
81 // and and invoke prmitive to underlying value
82 this->This()->save(t.t);
85 void save_override(const object_reference_type & t, int){
86 this->This()->newline();
87 // and and invoke prmitive to underlying value
88 this->This()->save(t.t);
91 // text file don't include the optional information
92 void save_override(const class_id_optional_type & /* t */, int){}
94 // note the following four overrides are necessary for some borland
95 // compilers which don't handle BOOST_STRONG_TYPE properly.
96 void save_override(const version_type & t, int){
97 // note:t.t resolves borland ambguity
101 void save_override(const class_id_type & t, int){
102 // note:t.t resolves borland ambguity
106 void save_override(const class_id_reference_type & t, int){
107 // note:t.t resolves borland ambguity
111 void save_override(const class_name_type & t, int){
112 const std::string s(t);
116 BOOST_ARCHIVE_OR_WARCHIVE_DECL(void)
119 basic_text_oarchive(unsigned int flags) :
120 detail::common_oarchive<Archive>(flags),
123 ~basic_text_oarchive(){}
126 } // namespace archive
129 #include <boost/archive/detail/abi_suffix.hpp> // pops abi_suffix.hpp pragmas
131 #endif // BOOST_ARCHIVE_BASIC_TEXT_OARCHIVE_HPP