Mercurial > hg > vamp-build-and-test
annotate DEPENDENCIES/generic/include/boost/serialization/string.hpp @ 125:34e428693f5d vext
Vext -> Repoint
author | Chris Cannam |
---|---|
date | Thu, 14 Jun 2018 11:15:39 +0100 |
parents | c530137014c0 |
children |
rev | line source |
---|---|
Chris@16 | 1 #ifndef BOOST_SERIALIZATION_STRING_HPP |
Chris@16 | 2 #define BOOST_SERIALIZATION_STRING_HPP |
Chris@16 | 3 |
Chris@16 | 4 // MS compatible compilers support #pragma once |
Chris@101 | 5 #if defined(_MSC_VER) |
Chris@16 | 6 # pragma once |
Chris@16 | 7 #endif |
Chris@16 | 8 |
Chris@16 | 9 /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8 |
Chris@16 | 10 // serialization/string.hpp: |
Chris@16 | 11 // serialization for stl string templates |
Chris@16 | 12 |
Chris@16 | 13 // (C) Copyright 2002 Robert Ramey - http://www.rrsd.com . |
Chris@16 | 14 // Use, modification and distribution is subject to the Boost Software |
Chris@16 | 15 // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at |
Chris@16 | 16 // http://www.boost.org/LICENSE_1_0.txt) |
Chris@16 | 17 |
Chris@16 | 18 // See http://www.boost.org for updates, documentation, and revision history. |
Chris@16 | 19 |
Chris@16 | 20 #include <string> |
Chris@16 | 21 |
Chris@16 | 22 #include <boost/config.hpp> |
Chris@16 | 23 #include <boost/serialization/level.hpp> |
Chris@16 | 24 |
Chris@16 | 25 BOOST_CLASS_IMPLEMENTATION(std::string, boost::serialization::primitive_type) |
Chris@16 | 26 #ifndef BOOST_NO_STD_WSTRING |
Chris@16 | 27 BOOST_CLASS_IMPLEMENTATION(std::wstring, boost::serialization::primitive_type) |
Chris@16 | 28 #endif |
Chris@16 | 29 |
Chris@16 | 30 #endif // BOOST_SERIALIZATION_STRING_HPP |