mirror of
https://github.com/boostorg/serialization.git
synced 2026-02-09 23:32:41 +00:00
9 lines
341 B
C++
9 lines
341 B
C++
// binary_warchive
|
|
#include <boost/archive/binary_woarchive.hpp>
|
|
typedef boost::archive::binary_woarchive test_oarchive;
|
|
typedef std::wofstream test_ostream;
|
|
#include <boost/archive/binary_wiarchive.hpp>
|
|
typedef boost::archive::binary_wiarchive test_iarchive;
|
|
typedef std::wifstream test_istream;
|
|
#define TEST_STREAM_FLAGS std::wios::binary
|