Low level helpers
[shibboleth/cpp-xmltooling.git] / xmltooling / util / XMLConstants.h
diff --git a/xmltooling/util/XMLConstants.h b/xmltooling/util/XMLConstants.h
new file mode 100644 (file)
index 0000000..78b4318
--- /dev/null
@@ -0,0 +1,71 @@
+/*\r
+ *  Copyright 2001-2006 Internet2\r
+ * \r
+ * Licensed under the Apache License, Version 2.0 (the "License");\r
+ * you may not use this file except in compliance with the License.\r
+ * You may obtain a copy of the License at\r
+ *\r
+ *     http://www.apache.org/licenses/LICENSE-2.0\r
+ *\r
+ * Unless required by applicable law or agreed to in writing, software\r
+ * distributed under the License is distributed on an "AS IS" BASIS,\r
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ * See the License for the specific language governing permissions and\r
+ * limitations under the License.\r
+ */\r
+\r
+/**\r
+ * @file XMLConstants.h\r
+ * \r
+ * Fundamental XML namespace constants \r
+ */\r
+\r
+#if !defined(__xmltooling_xmlconstants_h__)\r
+#define __xmltooling_xmlconstants_h__\r
+\r
+#include <xmltooling/unicode.h>\r
+\r
+namespace xmltooling {\r
+    \r
+    /**\r
+     * XML related constants.\r
+     */\r
+    struct XMLTOOL_API XMLConstants\r
+    {\r
+        /**  XML core namespace ("http://www.w3.org/XML/1998/namespace") */\r
+        static const XMLCh XML_NS[]; \r
+    \r
+        /**  XML namespace for xmlns attributes ("http://www.w3.org/2000/xmlns/") */\r
+        static const XMLCh XMLNS_NS[];\r
+        \r
+        /** XML namespace prefix for xmlns attributes ("xmlns") */\r
+        static const XMLCh XMLNS_PREFIX[];\r
+    \r
+        /**  XML Schema namespace ("http://www.w3.org/2001/XMLSchema") */\r
+        static const XMLCh XSD_NS[];\r
+        \r
+        /**  XML Schema QName prefix ("xs") */\r
+        static const XMLCh XSD_PREFIX[];\r
+    \r
+        /**  XML Schema Instance namespace ("http://www.w3.org/2001/XMLSchema-instance") */\r
+        static const XMLCh XSI_NS[];\r
+        \r
+        /**  XML Schema Instance QName prefix ("xsi") */\r
+        static const XMLCh XSI_PREFIX[];\r
+        \r
+        /**  XML Signature namespace ("http://www.w3.org/2000/09/xmldsig#") */\r
+        static const XMLCh XMLSIG_NS[];\r
+        \r
+        /**  XML Signature QName prefix ("ds") */\r
+        static const XMLCh XMLSIG_PREFIX[];\r
+        \r
+        /**  XML Encryption namespace ("http://www.w3.org/2001/04/xmlenc#") */\r
+        static const XMLCh XMLENC_NS[];\r
+        \r
+        /**  XML Encryption QName prefix ("xenc") */\r
+        static const XMLCh XMLENC_PREFIX[];\r
+    };\r
+\r
+};\r
+\r
+#endif /* __xmltooling_xmlconstants_h__ */\r