File: vectorstream.hpp

package info (click to toggle)
dvisvgm 3.4.4%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 11,076 kB
  • sloc: cpp: 81,762; ansic: 33,458; makefile: 912; xml: 201; python: 177; sh: 99
file content (17 lines) | stat: -rw-r--r-- 479 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

#ifndef BOOST_OVERRIDE
#define BOOST_OVERRIDE override
#endif

#ifndef BOOST_ASSERT
#define BOOST_ASSERT(expr)
#endif

#include "boost-vectorstream.hpp"

template <class CharVector>
using ovectorstream = boost::interprocess::basic_ovectorstream<CharVector, std::char_traits<typename CharVector::value_type>>;

template <class CharVector>
using ivectorstream = boost::interprocess::basic_ivectorstream<CharVector, std::char_traits<typename CharVector::value_type>>;