aboutsummaryrefslogtreecommitdiff
path: root/xml/value-traits.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2014-05-14 21:29:29 -0700
committerBoris Kolpackov <boris@codesynthesis.com>2014-05-14 21:29:29 -0700
commite897aa91a2a5c68a2f795f6a0a995600f13a85f8 (patch)
tree75a17430ba9cec822651b881003f66da8c89d7f9 /xml/value-traits.hxx
parent3bf332a7b77e9ce9e5eb0a1dfd5f64f238f4f17f (diff)
Convert to extension-less headers for API
Diffstat (limited to 'xml/value-traits.hxx')
-rw-r--r--xml/value-traits.hxx53
1 files changed, 0 insertions, 53 deletions
diff --git a/xml/value-traits.hxx b/xml/value-traits.hxx
deleted file mode 100644
index ca86382..0000000
--- a/xml/value-traits.hxx
+++ /dev/null
@@ -1,53 +0,0 @@
-// file : xml/value-traits.hxx
-// copyright : Copyright (c) 2013-2014 Code Synthesis Tools CC
-// license : MIT; see accompanying LICENSE file
-
-#ifndef XML_VALUE_TRAITS_HXX
-#define XML_VALUE_TRAITS_HXX
-
-#include <xml/details/pre.hxx>
-
-#include <string>
-#include <cstddef> // std::size_t
-
-#include <xml/forward.hxx>
-
-#include <xml/details/export.hxx>
-
-namespace xml
-{
- template <typename T>
- struct default_value_traits
- {
- static T
- parse (std::string, const parser&);
-
- static std::string
- serialize (const T&, const serializer&);
- };
-
- template <>
- struct LIBSTUDXML_EXPORT default_value_traits<bool>
- {
- static bool
- parse (std::string, const parser&);
-
- static std::string
- serialize (bool v, const serializer&)
- {
- return v ? "true" : "false";
- }
- };
-
- template <typename T>
- struct value_traits: default_value_traits<T> {};
-
- template <typename T, std::size_t N>
- struct value_traits<T[N]>: default_value_traits<const T*> {};
-}
-
-#include <xml/value-traits.txx>
-
-#include <xml/details/post.hxx>
-
-#endif // XML_VALUE_TRAITS_HXX