5 #include <cereal/archives/binary.hpp>
8 #include <cereal/types/vector.hpp>
12 #include <seqan3/test/tmp_filename.hpp>
15 void store(std::vector<int16_t>
const & data, seqan3::test::tmp_filename & tmp_file)
17 std::ofstream os(tmp_file.get_path(), std::ios::binary);
18 cereal::BinaryOutputArchive archive(os);
26 seqan3::test::tmp_filename tmp_file{
"data.out"};
28 std::vector<int16_t> vec{1,2,3,4};
Provides seqan3::debug_stream and related types.