diff options
author | Johnathan Corgan | 2012-04-07 19:32:10 -0700 |
---|---|---|
committer | Johnathan Corgan | 2012-04-07 19:32:10 -0700 |
commit | 9bef26c9271a7b9253075bda3c1fc7c8078c0343 (patch) | |
tree | a6c1329bb902c95c8ab9970f38ec5fb46d79167c /gr-howto-write-a-block-cmake/docs/doxygen/doxyxml/example/xml/index.xsd | |
parent | f621a52f779381cfe550b4278b83e701a747944c (diff) | |
parent | ef72dc714840dfb8fe3f918dda243f74453b6cc7 (diff) | |
download | gnuradio-9bef26c9271a7b9253075bda3c1fc7c8078c0343.tar.gz gnuradio-9bef26c9271a7b9253075bda3c1fc7c8078c0343.tar.bz2 gnuradio-9bef26c9271a7b9253075bda3c1fc7c8078c0343.zip |
Merge branch 'next'
Diffstat (limited to 'gr-howto-write-a-block-cmake/docs/doxygen/doxyxml/example/xml/index.xsd')
-rw-r--r-- | gr-howto-write-a-block-cmake/docs/doxygen/doxyxml/example/xml/index.xsd | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/gr-howto-write-a-block-cmake/docs/doxygen/doxyxml/example/xml/index.xsd b/gr-howto-write-a-block-cmake/docs/doxygen/doxyxml/example/xml/index.xsd deleted file mode 100644 index d7ab2a906..000000000 --- a/gr-howto-write-a-block-cmake/docs/doxygen/doxyxml/example/xml/index.xsd +++ /dev/null @@ -1,66 +0,0 @@ -<?xml version='1.0' encoding='utf-8' ?> -<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"> - <xsd:element name="doxygenindex" type="DoxygenType"/> - - <xsd:complexType name="DoxygenType"> - <xsd:sequence> - <xsd:element name="compound" type="CompoundType" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="version" type="xsd:string" use="required"/> - </xsd:complexType> - - <xsd:complexType name="CompoundType"> - <xsd:sequence> - <xsd:element name="name" type="xsd:string"/> - <xsd:element name="member" type="MemberType" minOccurs="0" maxOccurs="unbounded"/> - </xsd:sequence> - <xsd:attribute name="refid" type="xsd:string" use="required"/> - <xsd:attribute name="kind" type="CompoundKind" use="required"/> - </xsd:complexType> - - <xsd:complexType name="MemberType"> - <xsd:sequence> - <xsd:element name="name" type="xsd:string"/> - </xsd:sequence> - <xsd:attribute name="refid" type="xsd:string" use="required"/> - <xsd:attribute name="kind" type="MemberKind" use="required"/> - </xsd:complexType> - - <xsd:simpleType name="CompoundKind"> - <xsd:restriction base="xsd:string"> - <xsd:enumeration value="class"/> - <xsd:enumeration value="struct"/> - <xsd:enumeration value="union"/> - <xsd:enumeration value="interface"/> - <xsd:enumeration value="protocol"/> - <xsd:enumeration value="category"/> - <xsd:enumeration value="exception"/> - <xsd:enumeration value="file"/> - <xsd:enumeration value="namespace"/> - <xsd:enumeration value="group"/> - <xsd:enumeration value="page"/> - <xsd:enumeration value="example"/> - <xsd:enumeration value="dir"/> - </xsd:restriction> - </xsd:simpleType> - - <xsd:simpleType name="MemberKind"> - <xsd:restriction base="xsd:string"> - <xsd:enumeration value="define"/> - <xsd:enumeration value="property"/> - <xsd:enumeration value="event"/> - <xsd:enumeration value="variable"/> - <xsd:enumeration value="typedef"/> - <xsd:enumeration value="enum"/> - <xsd:enumeration value="enumvalue"/> - <xsd:enumeration value="function"/> - <xsd:enumeration value="signal"/> - <xsd:enumeration value="prototype"/> - <xsd:enumeration value="friend"/> - <xsd:enumeration value="dcop"/> - <xsd:enumeration value="slot"/> - </xsd:restriction> - </xsd:simpleType> - -</xsd:schema> - |