aboutsummaryrefslogtreecommitdiff
path: root/cutl/xml/serializer.ixx
diff options
context:
space:
mode:
Diffstat (limited to 'cutl/xml/serializer.ixx')
-rw-r--r--cutl/xml/serializer.ixx45
1 files changed, 45 insertions, 0 deletions
diff --git a/cutl/xml/serializer.ixx b/cutl/xml/serializer.ixx
new file mode 100644
index 0000000..115b77b
--- /dev/null
+++ b/cutl/xml/serializer.ixx
@@ -0,0 +1,45 @@
+// file : cutl/xml/serializer.ixx
+// copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC
+// license : MIT; see accompanying LICENSE file
+
+namespace cutl
+{
+ namespace xml
+ {
+ inline void serializer::
+ start_element (const qname_type& qname)
+ {
+ start_element (qname.namespace_ (), qname.name ());
+ }
+
+ inline void serializer::
+ start_element (const std::string& name)
+ {
+ start_element (std::string (), name);
+ }
+
+ inline void serializer::
+ start_attribute (const qname_type& qname)
+ {
+ start_attribute (qname.namespace_ (), qname.name ());
+ }
+
+ inline void serializer::
+ start_attribute (const std::string& name)
+ {
+ start_attribute (std::string (), name);
+ }
+
+ inline void serializer::
+ attribute (const qname_type& qname, const std::string& value)
+ {
+ attribute (qname.namespace_ (), qname.name (), value);
+ }
+
+ inline void serializer::
+ attribute (const std::string& name, const std::string& value)
+ {
+ attribute (std::string (), name, value);
+ }
+ }
+}