aboutsummaryrefslogtreecommitdiff
path: root/libxsde/xsde/cxx/xml/char-table.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'libxsde/xsde/cxx/xml/char-table.hxx')
-rw-r--r--libxsde/xsde/cxx/xml/char-table.hxx24
1 files changed, 24 insertions, 0 deletions
diff --git a/libxsde/xsde/cxx/xml/char-table.hxx b/libxsde/xsde/cxx/xml/char-table.hxx
new file mode 100644
index 0000000..cd919f3
--- /dev/null
+++ b/libxsde/xsde/cxx/xml/char-table.hxx
@@ -0,0 +1,24 @@
+// file : xsde/cxx/xml/char-table.hxx
+// author : Boris Kolpackov <boris@codesynthesis.com>
+// copyright : Copyright (c) 2005-2009 Code Synthesis Tools CC
+// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
+
+#ifndef XSDE_CXX_XML_CHAR_TABLE_HXX
+#define XSDE_CXX_XML_CHAR_TABLE_HXX
+
+namespace xsde
+{
+ namespace cxx
+ {
+ namespace xml
+ {
+ const unsigned char ncname_char_mask = 0x1;
+ const unsigned char name_first_char_mask = 0x2;
+ const unsigned char name_char_mask = 0x4;
+
+ extern unsigned char char_table[0x80];
+ }
+ }
+}
+
+#endif // XSDE_CXX_XML_CHAR_TABLE_HXX