blob: ff2468cfd118cb778008a595e7b7f4e593e897f6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
--- inc/config.hpp.orig
+++ inc/config.hpp
@@ -30,6 +30,30 @@
#include <libxml++/nodes/element.h>
#include <libxml++/nodes/textnode.h>
+namespace serialise
+{
+
+template<>
+class default_context_to<Glib::ustring>: public context_base_to<Glib::ustring>
+{
+public:
+ typedef Glib::ustring data_type;
+
+ virtual std::string to_string(const data_type& from) const;
+};
+
+template<>
+class default_context_from<Glib::ustring>:
+ public context_base_from<Glib::ustring>
+{
+public:
+ typedef Glib::ustring data_type;
+
+ virtual data_type from_string(const std::string& from) const;
+};
+
+} // namespace serialise
+
namespace Sobby
{
@@ -434,28 +458,4 @@
} // namespace Sobby
-namespace serialise
-{
-
-template<>
-class default_context_to<Glib::ustring>: public context_base_to<Glib::ustring>
-{
-public:
- typedef Glib::ustring data_type;
-
- virtual std::string to_string(const data_type& from) const;
-};
-
-template<>
-class default_context_from<Glib::ustring>:
- public context_base_from<Glib::ustring>
-{
-public:
- typedef Glib::ustring data_type;
-
- virtual data_type from_string(const std::string& from) const;
-};
-
-} // namespace serialise
-
#endif // _SOBBY_CONFIG_HPP_
|