aboutsummaryrefslogtreecommitdiff
path: root/xml/content
diff options
context:
space:
mode:
Diffstat (limited to 'xml/content')
-rw-r--r--xml/content35
1 files changed, 0 insertions, 35 deletions
diff --git a/xml/content b/xml/content
deleted file mode 100644
index 61e5625..0000000
--- a/xml/content
+++ /dev/null
@@ -1,35 +0,0 @@
-// file : xml/content -*- C++ -*-
-// copyright : Copyright (c) 2013-2017 Code Synthesis Tools CC
-// license : MIT; see accompanying LICENSE file
-
-#ifndef XML_CONTENT
-#define XML_CONTENT
-
-#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