aboutsummaryrefslogtreecommitdiff
path: root/xml/content.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/content.hxx
parent3bf332a7b77e9ce9e5eb0a1dfd5f64f238f4f17f (diff)
Convert to extension-less headers for API
Diffstat (limited to 'xml/content.hxx')
-rw-r--r--xml/content.hxx35
1 files changed, 0 insertions, 35 deletions
diff --git a/xml/content.hxx b/xml/content.hxx
deleted file mode 100644
index 575ef1d..0000000
--- a/xml/content.hxx
+++ /dev/null
@@ -1,35 +0,0 @@
-// file : xml/content.hxx
-// copyright : Copyright (c) 2013-2014 Code Synthesis Tools CC
-// license : MIT; see accompanying LICENSE file
-
-#ifndef XML_CONTENT_HXX
-#define XML_CONTENT_HXX
-
-#include <xml/details/pre.hxx>
-
-namespace xml
-{
- // XML content model. C++11 enum class emulated for C++98.
- //
- struct content
- {
- enum value
- {
- // element characters whitespaces notes
- empty, // no no ignored
- simple, // no yes preserved content accumulated
- complex, // yes no ignored
- mixed // yes yes preserved
- };
-
- content (value v): v_ (v) {};
- operator value () const {return v_;}
-
- private:
- value v_;
- };
-}
-
-#include <xml/details/post.hxx>
-
-#endif // XML_CONTENT_HXX