Commit e2fa9f32 authored by Davis King's avatar Davis King

Added serialization support for std::pair objects.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%404029
parent b994798e
...@@ -50,6 +50,7 @@ ...@@ -50,6 +50,7 @@
- std::wstring - std::wstring
- std::vector - std::vector
- std::map - std::map
- std::pair
- std::complex - std::complex
- dlib::uint64 - dlib::uint64
- dlib::int64 - dlib::int64
...@@ -63,6 +64,7 @@ ...@@ -63,6 +64,7 @@
- std::wstring - std::wstring
- std::vector - std::vector
- std::map - std::map
- std::pair
- std::complex - std::complex
- dlib::uint64 - dlib::uint64
- dlib::int64 - dlib::int64
...@@ -602,6 +604,38 @@ namespace dlib ...@@ -602,6 +604,38 @@ namespace dlib
} }
} }
// ----------------------------------------------------------------------------------------
template <typename first_type, typename second_type>
void serialize (
const std::pair<first_type, second_type>& item,
std::ostream& out
)
{
try
{
serialize(item.first,out);
serialize(item.second,out);
}
catch (serialization_error& e)
{ throw serialization_error(e.info + "\n while serializing object of type std::pair"); }
}
template <typename first_type, typename second_type>
void deserialize (
std::pair<first_type, second_type>& item,
std::istream& in
)
{
try
{
deserialize(item.first,in);
deserialize(item.second,in);
}
catch (serialization_error& e)
{ throw serialization_error(e.info + "\n while deserializing object of type std::pair"); }
}
// ---------------------------------------------------------------------------------------- // ----------------------------------------------------------------------------------------
template <typename domain, typename range, typename compare, typename alloc> template <typename domain, typename range, typename compare, typename alloc>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment