Commit 213cd1d2 authored by Davis King's avatar Davis King

Fixed the serialization functions for the normalized_function object. They will

now work with custom normalizer function objects.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403152
parent 958b9b5b
......@@ -397,10 +397,11 @@ namespace dlib
};
template <
typename function_type
typename function_type,
typename normalizer_type
>
void serialize (
const normalized_function<function_type>& item,
const normalized_function<function_type,normalizer_type>& item,
std::ostream& out
)
{
......@@ -416,10 +417,11 @@ namespace dlib
}
template <
typename function_type
typename function_type,
typename normalizer_type
>
void deserialize (
normalized_function<function_type>& item,
normalized_function<function_type,normalizer_type>& item,
std::istream& in
)
{
......
......@@ -438,10 +438,11 @@ namespace dlib
};
template <
typename K
typename function_type,
typename normalizer_type
>
void serialize (
const normalized_function<K>& item,
const normalized_function<function_type, normalizer_type>& item,
std::ostream& out
);
/*!
......@@ -449,10 +450,11 @@ namespace dlib
!*/
template <
typename K
typename function_type,
typename normalizer_type
>
void deserialize (
normalized_function<K>& item,
normalized_function<function_type, normalizer_type>& item,
std::istream& in
);
/*!
......
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