#include "unit.hpp"
#include <boost/version.hpp>
#include <boost/iostreams/stream.hpp>
#include <boost/iostreams/device/array.hpp>
#include <boost/serialization/array.hpp>
#include <boost/serialization/vector.hpp>
#include <boost/archive/binary_iarchive.hpp>
#include <rtt-fwd.hpp>
#include <transports/mqueue/binary_data_archive.hpp>
#include <os/fosi.h>
Go to the source code of this file.
Classes | |
class | MQueueArchiveTest |
Functions | |
BOOST_AUTO_TEST_CASE (testBinaryDataArchive) | |
BOOST_AUTO_TEST_CASE (testFixedStringBinaryDataArchive) | |
BOOST_AUTO_TEST_CASE (testMakeArrayBinaryDataArchive) | |
BOOST_AUTO_TEST_CASE | ( | testBinaryDataArchive | ) |
Definition at line 60 of file mqueue_archive_test.cpp.
BOOST_AUTO_TEST_CASE | ( | testFixedStringBinaryDataArchive | ) |
For serializing C-Style arrays, we need to use the make_array or array<T> helper functions (aka 'wrappers') from boost::serialization.
Definition at line 101 of file mqueue_archive_test.cpp.
BOOST_AUTO_TEST_CASE | ( | testMakeArrayBinaryDataArchive | ) |
For serializing C-Style arrays created with make_nvp("array", make_array() )
Definition at line 134 of file mqueue_archive_test.cpp.