aboutsummaryrefslogtreecommitdiff
path: root/cutl/xml/serializer.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'cutl/xml/serializer.hxx')
-rw-r--r--cutl/xml/serializer.hxx8
1 files changed, 8 insertions, 0 deletions
diff --git a/cutl/xml/serializer.hxx b/cutl/xml/serializer.hxx
index 591a20a..88164e2 100644
--- a/cutl/xml/serializer.hxx
+++ b/cutl/xml/serializer.hxx
@@ -20,6 +20,8 @@ namespace cutl
{
namespace xml
{
+ class serializer;
+
struct LIBCUTL_EXPORT serialization: exception
{
virtual
@@ -28,6 +30,8 @@ namespace cutl
serialization (const std::string& name,
const std::string& description);
+ serialization (const serializer&, const std::string& description);
+
const std::string&
name () const {return name_;}
@@ -38,6 +42,10 @@ namespace cutl
what () const throw ();
private:
+ void
+ init ();
+
+ private:
std::string name_;
std::string description_;
std::string what_;