1 // (C) Copyright 2002-4 Robert Ramey - http://www.rrsd.com .
2 // Use, modification and distribution is subject to the Boost Software
3 // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
4 // http://www.boost.org/LICENSE_1_0.txt)
5 
6 //  See http://www.boost.org for updates, documentation, and revision history.
7 // text_archive
8 #include <fstream>
9 
10 #include <boost/archive/text_oarchive.hpp>
11 typedef boost::archive::text_oarchive test_oarchive;
12 typedef std::ofstream test_ostream;
13 #include <boost/archive/text_iarchive.hpp>
14 typedef boost::archive::text_iarchive test_iarchive;
15 typedef std::ifstream test_istream;
16