mirror of
https://github.com/boostorg/serialization.git
synced 2026-01-28 07:32:10 +00:00
10 lines
334 B
C++
10 lines
334 B
C++
// binary_archive
|
|
#include <boost/archive/binary_oarchive.hpp>
|
|
typedef boost::archive::binary_oarchive test_oarchive;
|
|
typedef std::ofstream test_ostream;
|
|
#include <boost/archive/binary_iarchive.hpp>
|
|
typedef boost::archive::binary_iarchive test_iarchive;
|
|
typedef std::ifstream test_istream;
|
|
#define TEST_STREAM_FLAGS std::ios::binary
|
|
|