summaryrefslogtreecommitdiffstats
path: root/src/index_xsd.h
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2003-07-08 20:06:16 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2003-07-08 20:06:16 (GMT)
commit5444ff60bbf81c46841827e66e72f3148edde9ff (patch)
tree0ff0fae4a5be0021848d96eb18ee8505ff6b9b5d /src/index_xsd.h
parent17c14fb5230cfc532577c32df1d10223534392d8 (diff)
downloadDoxygen-5444ff60bbf81c46841827e66e72f3148edde9ff.zip
Doxygen-5444ff60bbf81c46841827e66e72f3148edde9ff.tar.gz
Doxygen-5444ff60bbf81c46841827e66e72f3148edde9ff.tar.bz2
Release-1.3.2-20030708
Diffstat (limited to 'src/index_xsd.h')
-rw-r--r--src/index_xsd.h60
1 files changed, 60 insertions, 0 deletions
diff --git a/src/index_xsd.h b/src/index_xsd.h
new file mode 100644
index 0000000..e0efd95
--- /dev/null
+++ b/src/index_xsd.h
@@ -0,0 +1,60 @@
+"<xsd:schema xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\">\n"
+" <xsd:element name=\"doxygen\" type=\"DoxygenType\"/>\n"
+"\n"
+" <xsd:complexType name=\"DoxygenType\">\n"
+" <xsd:sequence>\n"
+" <xsd:element name=\"compound\" type=\"CompoundType\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n"
+" </xsd:sequence>\n"
+" <xsd:attribute name=\"version\" type=\"xsd:string\" use=\"required\"/>\n"
+" </xsd:complexType>\n"
+"\n"
+" <xsd:complexType name=\"CompoundType\">\n"
+" <xsd:sequence>\n"
+" <xsd:element name=\"name\" type=\"xsd:string\"/>\n"
+" <xsd:element name=\"member\" type=\"MemberType\" minOccurs=\"0\" maxOccurs=\"unbounded\"/>\n"
+" </xsd:sequence>\n"
+" <xsd:attribute name=\"refid\" type=\"xsd:Name\" use=\"required\"/>\n"
+" <xsd:attribute name=\"kind\" type=\"CompoundKind\" use=\"required\"/>\n"
+" </xsd:complexType>\n"
+"\n"
+" <xsd:complexType name=\"MemberType\">\n"
+" <xsd:sequence>\n"
+" <xsd:element name=\"name\" type=\"xsd:string\"/>\n"
+" </xsd:sequence>\n"
+" <xsd:attribute name=\"refid\" type=\"xsd:Name\" use=\"required\"/>\n"
+" <xsd:attribute name=\"kind\" type=\"MemberKind\" use=\"required\"/>\n"
+" </xsd:complexType>\n"
+" \n"
+" <xsd:simpleType name=\"CompoundKind\">\n"
+" <xsd:restriction base=\"xsd:string\">\n"
+" <xsd:enumeration value=\"class\"/>\n"
+" <xsd:enumeration value=\"struct\"/>\n"
+" <xsd:enumeration value=\"union\"/>\n"
+" <xsd:enumeration value=\"interface\"/>\n"
+" <xsd:enumeration value=\"exception\"/>\n"
+" <xsd:enumeration value=\"file\"/>\n"
+" <xsd:enumeration value=\"namespace\"/>\n"
+" <xsd:enumeration value=\"group\"/>\n"
+" <xsd:enumeration value=\"page\"/>\n"
+" </xsd:restriction>\n"
+" </xsd:simpleType>\n"
+"\n"
+" <xsd:simpleType name=\"MemberKind\">\n"
+" <xsd:restriction base=\"xsd:string\">\n"
+" <xsd:enumeration value=\"define\"/>\n"
+" <xsd:enumeration value=\"property\"/>\n"
+" <xsd:enumeration value=\"event\"/>\n"
+" <xsd:enumeration value=\"variable\"/>\n"
+" <xsd:enumeration value=\"typedef\"/>\n"
+" <xsd:enumeration value=\"enum\"/>\n"
+" <xsd:enumeration value=\"function\"/>\n"
+" <xsd:enumeration value=\"signal\"/>\n"
+" <xsd:enumeration value=\"prototype\"/>\n"
+" <xsd:enumeration value=\"friend\"/>\n"
+" <xsd:enumeration value=\"dcop\"/>\n"
+" <xsd:enumeration value=\"slot\"/>\n"
+" </xsd:restriction>\n"
+" </xsd:simpleType>\n"
+"\n"
+"</xsd:schema>\n"
+"\n"