123456789101112131415161718192021222324252627282930 |
- #ifndef BOOST_SERIALIZATION_STRING_HPP
- #define BOOST_SERIALIZATION_STRING_HPP
- #if defined(_MSC_VER)
- # pragma once
- #endif
- #include <string>
- #include <boost/config.hpp>
- #include <boost/serialization/level.hpp>
- BOOST_CLASS_IMPLEMENTATION(std::string, boost::serialization::primitive_type)
- #ifndef BOOST_NO_STD_WSTRING
- BOOST_CLASS_IMPLEMENTATION(std::wstring, boost::serialization::primitive_type)
- #endif
- #endif
|