You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by da...@apache.org on 2006/05/09 09:03:19 UTC

svn commit: r405321 - /webservices/axis2/trunk/c/modules/xml/xml_schema/include/xml_schema/axis2_xml_schema_defines.h

Author: damitha
Date: Tue May  9 00:03:18 2006
New Revision: 405321

URL: http://svn.apache.org/viewcvs?rev=405321&view=rev
Log:
This contain the types enumeration for xml_schema

Added:
    webservices/axis2/trunk/c/modules/xml/xml_schema/include/xml_schema/axis2_xml_schema_defines.h

Added: webservices/axis2/trunk/c/modules/xml/xml_schema/include/xml_schema/axis2_xml_schema_defines.h
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/xml_schema/include/xml_schema/axis2_xml_schema_defines.h?rev=405321&view=auto
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/xml_schema/include/xml_schema/axis2_xml_schema_defines.h (added)
+++ webservices/axis2/trunk/c/modules/xml/xml_schema/include/xml_schema/axis2_xml_schema_defines.h Tue May  9 00:03:18 2006
@@ -0,0 +1,73 @@
+/*
+ * Copyright 2004,2005 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef AXIS2_XML_SCHEMA_DEFINES_H
+#define AXIS2_XML_SCHEMA_DEFINES_H
+
+/**
+ * @file axis2_xml_schema_defines.h
+ * @brief Axis2c specific global declarations
+ */
+
+#include <axis2_env.h>
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+
+/** @defgroup axis2_xml_schema_defines Xml Schema/C project
+  * @ingroup axis2_xml_schema_defines
+  * @{
+  */
+/** @defgroup axis2 Xml Schema/C project
+  *  @{
+ */
+
+/** 
+    * \brief Axis2 types
+    *
+    * All Xml Schema/C types
+    */
+    typedef enum axis2_xml_schema_types
+    {
+        AXIS2_XML_SCHEMA = 0,
+        AXIS2_XML_SCHEMA_IMPORTED,
+        AXIS2_XML_SCHEMA_INLINED_SCHEMA,
+        AXIS2_XML_SCHEMA_XML_ATTR,
+        AXIS2_XML_SCHEMA_QNAME_ATTR,
+        AXIS2_XML_SCHEMA_URI_ATTR,
+        AXIS2_XML_SCHEMA_QNAME_LIST_ATTR,
+        AXIS2_XML_SCHEMA_STRING_ATTR,
+        AXIS2_XML_SCHEMA_QNAME_LIST_OR_TOKEN_ANY_ATTR,
+        AXIS2_XML_SCHEMA_QNAME_OR_TOKEN_ANY_ATTR,
+        AXIS2_XML_SCHEMA_BOOL_ATTR,
+        AXIS2_XML_SCHEMA_WSDL_ELEMENT,
+        AXIS2_XML_SCHEMA_ATTR_EXTENSIBLE,
+        AXIS2_XML_SCHEMA_ELEMENT_EXTENSIBLE,
+        AXIS2_XML_SCHEMA_FEATURE,
+        AXIS2_XML_SCHEMA_TYPES,
+        AXIS2_XML_SCHEMA_DOCUMENTATION
+    } axis2_xml_schema_types_t;
+
+/** @} */
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* AXIS2_XML_SCHEMA_DEFINES_H */