Skip to content

Commit 8b10934

Browse files
committed
regenerate and add a page
1 parent 66d20a9 commit 8b10934

25 files changed

+133
-77
lines changed

example/doc/api-bicycle.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# group `bicycle` {#group__bicycle}
1+
# group `bicycle`
22

33
Bicycle module contains the bycicle class. Bicycles are a useful way of transporting oneself, without too much effort.
44

55
## Summary
66

77
Members | Descriptions
88
--------------------------------|---------------------------------------------
9-
`class `[`transport::Bicycle`](example/doc/api-bicycle.md#classtransport_1_1Bicycle) | Standard bicycle class.
9+
`class `[`transport::Bicycle`](#classtransport_1_1Bicycle) | Standard bicycle class.
1010

11-
# class `transport::Bicycle` {#classtransport_1_1Bicycle}
11+
# class `transport::Bicycle`
1212

1313
Standard bicycle class.
1414

@@ -24,17 +24,17 @@ Standard bicycle class.
2424

2525
## Members
2626

27-
#### `public virtual void `[`PedalHarder`](#classtransport_1_1Bicycle_1a7df6cce8f18012fb07bef5be9dadd8ef)`()` {#classtransport_1_1Bicycle_1a7df6cce8f18012fb07bef5be9dadd8ef}
27+
#### `public virtual void `[`PedalHarder`](#classtransport_1_1Bicycle_1a7df6cce8f18012fb07bef5be9dadd8ef)`()`
2828

2929
PedalHarder makes you go faster (usually).
3030

31-
#### `public virtual void `[`RingBell`](#classtransport_1_1Bicycle_1a7d2be572f09c78b4d4ae38ef22f3e98b)`()` {#classtransport_1_1Bicycle_1a7d2be572f09c78b4d4ae38ef22f3e98b}
31+
#### `public virtual void `[`RingBell`](#classtransport_1_1Bicycle_1a7d2be572f09c78b4d4ae38ef22f3e98b)`()`
3232

3333
Ring bell on the bike.
3434

3535
RingBell rings the bell on the bike. Note that not all bikes have bells.
3636

37-
#### `public virtual `[`~Bicycle`](#classtransport_1_1Bicycle_1a5f62d09b772a7705634bfb3551803c25)`()` {#classtransport_1_1Bicycle_1a5f62d09b772a7705634bfb3551803c25}
37+
#### `public virtual `[`~Bicycle`](#classtransport_1_1Bicycle_1a5f62d09b772a7705634bfb3551803c25)`()`
3838

3939
Default destructor.
4040

example/doc/api-mountainbike.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
1-
# group `mountainbike` {#group__mountainbike}
1+
# group `mountainbike`
22

33
Mountain bike module contains the `MountainBike` class. Mountain bikes are a kind of bike for cycling on rough terrain.
44

55
## Summary
66

77
Members | Descriptions
88
--------------------------------|---------------------------------------------
9-
`class `[`transport::MountainBike`](example/doc/api-mountainbike.md#classtransport_1_1MountainBike) | Mountain bike implementation of a `[Bicycle](example/doc/api-bicycle.md#classtransport_1_1Bicycle)`.
9+
`class `[`transport::MountainBike`](#classtransport_1_1MountainBike) | Mountain bike implementation of a `[Bicycle](./example/doc/api-bicycle.md#classtransport_1_1Bicycle)`.
1010

11-
# class `transport::MountainBike` {#classtransport_1_1MountainBike}
11+
# class `transport::MountainBike`
1212

1313
```
1414
class transport::MountainBike
1515
: public transport::Bicycle
1616
```
1717

18-
Mountain bike implementation of a `[Bicycle](#classtransport_1_1Bicycle)`.
18+
Mountain bike implementation of a `[Bicycle](./example/doc/api-bicycle.md#classtransport_1_1Bicycle)`.
1919

20-
[MountainBike](#classtransport_1_1MountainBike) is an implementation of a [Bicycle](#classtransport_1_1Bicycle) providing a bike for cycling on rough terrain. Mountain bikes are pretty cool because they have stuff like **Suspension** (and you can even adjust it using SetSuspension). If you're looking for a bike for use on the road, you might be better off using a [RacingBike](#classtransport_1_1RacingBike) though.
20+
[MountainBike](#classtransport_1_1MountainBike) is an implementation of a [Bicycle](./example/doc/api-bicycle.md#classtransport_1_1Bicycle) providing a bike for cycling on rough terrain. Mountain bikes are pretty cool because they have stuff like **Suspension** (and you can even adjust it using SetSuspension). If you're looking for a bike for use on the road, you might be better off using a [RacingBike](./example/doc/api-racingbike.md#classtransport_1_1RacingBike) though.
2121

2222
## Summary
2323

2424
Members | Descriptions
2525
--------------------------------|---------------------------------------------
2626
`public bool `[`SetSuspension`](#classtransport_1_1MountainBike_1a04caecd7e5ff7572b6ac1dc283510301)`(double stiffness)` | Set suspension stiffness. the suspension stiffness.
27-
`public template<typename BreakType>` <br/>`inline bool `[`ChangeBreak`](#classtransport_1_1MountainBike_1afd02513876a196e98acaacdc555aeb52)`(BreakType breakType)` | Change the break type. the break type. the type of the break.
27+
`public template<>` <br/>`inline bool `[`ChangeBreak`](#classtransport_1_1MountainBike_1afd02513876a196e98acaacdc555aeb52)`(BreakType breakType)` | Change the break type. the break type. the type of the break.
2828

2929
## Members
3030

31-
#### `public bool `[`SetSuspension`](#classtransport_1_1MountainBike_1a04caecd7e5ff7572b6ac1dc283510301)`(double stiffness)` {#classtransport_1_1MountainBike_1a04caecd7e5ff7572b6ac1dc283510301}
31+
#### `public bool `[`SetSuspension`](#classtransport_1_1MountainBike_1a04caecd7e5ff7572b6ac1dc283510301)`(double stiffness)`
3232

3333
Set suspension stiffness. the suspension stiffness.
3434

@@ -37,7 +37,7 @@ SetSuspension changes the stiffness of the suspension on the bike. The method wi
3737
#### Returns
3838
true if the suspension was adjusted successfully, false otherwise.
3939

40-
#### `public template<typename BreakType>` <br/>`inline bool `[`ChangeBreak`](#classtransport_1_1MountainBike_1afd02513876a196e98acaacdc555aeb52)`(BreakType breakType)` {#classtransport_1_1MountainBike_1afd02513876a196e98acaacdc555aeb52}
40+
#### `public template<>` <br/>`inline bool `[`ChangeBreak`](#classtransport_1_1MountainBike_1afd02513876a196e98acaacdc555aeb52)`(BreakType breakType)`
4141

4242
Change the break type. the break type. the type of the break.
4343

example/doc/api-racingbike.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# group `racingbike` {#group__racingbike}
1+
# group `racingbike`
22

33
Racing bike module contains the `RacingBike` class. Racing bikes are a special kind of bike which can go much faster on the road, with much less effort.
44

55
## Summary
66

77
Members | Descriptions
88
--------------------------------|---------------------------------------------
9-
`class `[`transport::RacingBike`](example/doc/api-racingbike.md#classtransport_1_1RacingBike) | Racing bike class.
9+
`class `[`transport::RacingBike`](#classtransport_1_1RacingBike) | Racing bike class.
1010

11-
# class `transport::RacingBike` {#classtransport_1_1RacingBike}
11+
# class `transport::RacingBike`
1212

1313
```
1414
class transport::RacingBike
@@ -28,11 +28,11 @@ Racing bike class.
2828

2929
## Members
3030

31-
#### `public virtual void `[`PedalHarder`](#classtransport_1_1RacingBike_1ab557c5727daa07a5001782d5dcd46c5b)`()` {#classtransport_1_1RacingBike_1ab557c5727daa07a5001782d5dcd46c5b}
31+
#### `public virtual void `[`PedalHarder`](#classtransport_1_1RacingBike_1ab557c5727daa07a5001782d5dcd46c5b)`()`
3232

3333
PedalHarder makes you go faster (usually).
3434

35-
#### `public virtual void `[`RingBell`](#classtransport_1_1RacingBike_1ad32dc3b06a453fba3e20329842bb318b)`()` {#classtransport_1_1RacingBike_1ad32dc3b06a453fba3e20329842bb318b}
35+
#### `public virtual void `[`RingBell`](#classtransport_1_1RacingBike_1ad32dc3b06a453fba3e20329842bb318b)`()`
3636

3737
Ring bell on the bike.
3838

example/doc/page-md_src_overview.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# page `md_src_overview`
2+
3+
This is an overview of Transport::Bicycle, the greatest new CPP program.
4+

example/src/overview.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Overview
2+
3+
This is an overview of `transport::Bicycle`, the greatest new CPP program.

example/xml/bicycle_8cpp.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
<?xml version='1.0' encoding='UTF-8' standalone='no'?>
2-
<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version="1.8.12">
2+
<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version="1.8.14">
33
<compounddef id="bicycle_8cpp" kind="file" language="C++">
44
<compoundname>bicycle.cpp</compoundname>
55
<includes refid="bicycle_8h" local="yes">bicycle.h</includes>
66
<incdepgraph>
7+
<node id="1">
8+
<label>bicycle.h</label>
9+
<link refid="bicycle_8h_source"/>
10+
</node>
711
<node id="0">
812
<label>src/bicycle.cpp</label>
913
<link refid="bicycle_8cpp"/>
1014
<childnode refid="1" relation="include">
1115
</childnode>
1216
</node>
13-
<node id="1">
14-
<label>bicycle.h</label>
15-
<link refid="bicycle_8h_source"/>
16-
</node>
1717
</incdepgraph>
1818
<briefdescription>
1919
</briefdescription>

example/xml/bicycle_8h.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version='1.0' encoding='UTF-8' standalone='no'?>
2-
<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version="1.8.12">
2+
<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version="1.8.14">
33
<compounddef id="bicycle_8h" kind="file" language="C++">
44
<compoundname>bicycle.h</compoundname>
55
<includedby refid="bicycle_8cpp" local="yes">src/bicycle.cpp</includedby>

example/xml/classtransport_1_1Bicycle.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version='1.0' encoding='UTF-8' standalone='no'?>
2-
<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version="1.8.12">
2+
<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version="1.8.14">
33
<compounddef id="classtransport_1_1Bicycle" kind="class" language="C++" prot="public">
44
<compoundname>transport::Bicycle</compoundname>
55
<derivedcompoundref refid="classtransport_1_1MountainBike" prot="public" virt="non-virtual">transport::MountainBike</derivedcompoundref>

example/xml/classtransport_1_1MountainBike.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version='1.0' encoding='UTF-8' standalone='no'?>
2-
<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version="1.8.12">
2+
<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version="1.8.14">
33
<compounddef id="classtransport_1_1MountainBike" kind="class" language="C++" prot="public">
44
<compoundname>transport::MountainBike</compoundname>
55
<basecompoundref refid="classtransport_1_1Bicycle" prot="public" virt="non-virtual">transport::Bicycle</basecompoundref>

example/xml/classtransport_1_1RacingBike.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version='1.0' encoding='UTF-8' standalone='no'?>
2-
<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version="1.8.12">
2+
<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version="1.8.14">
33
<compounddef id="classtransport_1_1RacingBike" kind="class" language="C++" prot="public">
44
<compoundname>transport::RacingBike</compoundname>
55
<basecompoundref refid="classtransport_1_1Bicycle" prot="public" virt="non-virtual">transport::Bicycle</basecompoundref>

example/xml/compound.xsd

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
<xsd:element name="innergroup" type="refType" minOccurs="0" maxOccurs="unbounded" />
3030
<xsd:element name="templateparamlist" type="templateparamlistType" minOccurs="0" />
3131
<xsd:element name="sectiondef" type="sectiondefType" minOccurs="0" maxOccurs="unbounded" />
32+
<xsd:element name="tableofcontents" minOccurs="0" maxOccurs="1" />
3233
<xsd:element name="briefdescription" type="descriptionType" minOccurs="0" />
3334
<xsd:element name="detaileddescription" type="descriptionType" minOccurs="0" />
3435
<xsd:element name="inheritancegraph" type="graphType" minOccurs="0" />
@@ -146,9 +147,11 @@
146147
<xsd:attribute name="id" type="xsd:string" />
147148
<xsd:attribute name="prot" type="DoxProtectionKind" />
148149
<xsd:attribute name="static" type="DoxBool" />
150+
<xsd:attribute name="strong" type="DoxBool" use="optional"/>
149151
<xsd:attribute name="const" type="DoxBool" use="optional"/>
150152
<xsd:attribute name="explicit" type="DoxBool" use="optional"/>
151153
<xsd:attribute name="inline" type="DoxBool" use="optional"/>
154+
<xsd:attribute name="refqual" type="DoxRefQualifierKind" use="optional"/>
152155
<xsd:attribute name="virt" type="DoxVirtualKind" use="optional"/>
153156
<xsd:attribute name="volatile" type="DoxBool" use="optional"/>
154157
<xsd:attribute name="mutable" type="DoxBool" use="optional"/>
@@ -263,6 +266,7 @@
263266
<xsd:sequence>
264267
<xsd:element name="codeline" type="codelineType" minOccurs="0" maxOccurs="unbounded" />
265268
</xsd:sequence>
269+
<xsd:attribute name="filename" type="xsd:string" use="optional"/>
266270
</xsd:complexType>
267271

268272
<xsd:complexType name="codelineType">
@@ -277,12 +281,16 @@
277281

278282
<xsd:complexType name="highlightType" mixed="true">
279283
<xsd:choice minOccurs="0" maxOccurs="unbounded">
280-
<xsd:element name="sp" />
284+
<xsd:element name="sp" type="spType" />
281285
<xsd:element name="ref" type="refTextType" />
282286
</xsd:choice>
283287
<xsd:attribute name="class" type="DoxHighlightClass" />
284288
</xsd:complexType>
285289

290+
<xsd:complexType name="spType" mixed="true">
291+
<xsd:attribute name="value" type="xsd:integer" use="optional"/>
292+
</xsd:complexType>
293+
286294
<xsd:complexType name="referenceType" mixed="true">
287295
<xsd:attribute name="refid" type="xsd:string" />
288296
<xsd:attribute name="compoundref" type="xsd:string" use="optional" />
@@ -937,6 +945,13 @@
937945
</xsd:restriction>
938946
</xsd:simpleType>
939947

948+
<xsd:simpleType name="DoxRefQualifierKind">
949+
<xsd:restriction base="xsd:string">
950+
<xsd:enumeration value="lvalue" />
951+
<xsd:enumeration value="rvalue" />
952+
</xsd:restriction>
953+
</xsd:simpleType>
954+
940955
<xsd:simpleType name="DoxLanguage">
941956
<xsd:restriction base="xsd:string">
942957
<xsd:enumeration value="Unknown" />
@@ -952,6 +967,7 @@
952967
<xsd:enumeration value="Fortran" />
953968
<xsd:enumeration value="VHDL" />
954969
<xsd:enumeration value="XML" />
970+
<xsd:enumeration value="SQL" />
955971
<xsd:enumeration value="Tcl" />
956972
<xsd:enumeration value="Markdown" />
957973
</xsd:restriction>

example/xml/dir_68267d1309a1af8e8297ef4c3efbcdba.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version='1.0' encoding='UTF-8' standalone='no'?>
2-
<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version="1.8.12">
2+
<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version="1.8.14">
33
<compounddef id="dir_68267d1309a1af8e8297ef4c3efbcdba" kind="dir">
44
<compoundname>src</compoundname>
55
<innerfile refid="bicycle_8cpp">bicycle.cpp</innerfile>

example/xml/group__bicycle.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version='1.0' encoding='UTF-8' standalone='no'?>
2-
<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version="1.8.12">
2+
<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version="1.8.14">
33
<compounddef id="group__bicycle" kind="group">
44
<compoundname>bicycle</compoundname>
55
<title>Bycicle module</title>

example/xml/group__mountainbike.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version='1.0' encoding='UTF-8' standalone='no'?>
2-
<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version="1.8.12">
2+
<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version="1.8.14">
33
<compounddef id="group__mountainbike" kind="group">
44
<compoundname>mountainbike</compoundname>
55
<title>Mountain bike module</title>

example/xml/group__racingbike.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version='1.0' encoding='UTF-8' standalone='no'?>
2-
<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version="1.8.12">
2+
<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version="1.8.14">
33
<compounddef id="group__racingbike" kind="group">
44
<compoundname>racingbike</compoundname>
55
<title>Racing bike module</title>

example/xml/index.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version='1.0' encoding='UTF-8' standalone='no'?>
2-
<doxygenindex xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="index.xsd" version="1.8.12">
2+
<doxygenindex xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="index.xsd" version="1.8.14">
33
<compound refid="classtransport_1_1Bicycle" kind="class"><name>transport::Bicycle</name>
44
<member refid="classtransport_1_1Bicycle_1a7df6cce8f18012fb07bef5be9dadd8ef" kind="function"><name>PedalHarder</name></member>
55
<member refid="classtransport_1_1Bicycle_1a7d2be572f09c78b4d4ae38ef22f3e98b" kind="function"><name>RingBell</name></member>
@@ -23,6 +23,8 @@
2323
</compound>
2424
<compound refid="mountainbike_8h" kind="file"><name>mountainbike.h</name>
2525
</compound>
26+
<compound refid="overview_8md" kind="file"><name>overview.md</name>
27+
</compound>
2628
<compound refid="racingbike_8cpp" kind="file"><name>racingbike.cpp</name>
2729
</compound>
2830
<compound refid="racingbike_8h" kind="file"><name>racingbike.h</name>
@@ -40,6 +42,8 @@
4042
</compound>
4143
<compound refid="group__mountainbike" kind="group"><name>mountainbike</name>
4244
</compound>
45+
<compound refid="md_src_overview" kind="page"><name>md_src_overview</name>
46+
</compound>
4347
<compound refid="dir_68267d1309a1af8e8297ef4c3efbcdba" kind="dir"><name>src</name>
4448
</compound>
4549
</doxygenindex>

example/xml/md_src_overview.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version='1.0' encoding='UTF-8' standalone='no'?>
2+
<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version="1.8.14">
3+
<compounddef id="md_src_overview" kind="page">
4+
<compoundname>md_src_overview</compoundname>
5+
<title>Overview</title>
6+
<briefdescription>
7+
</briefdescription>
8+
<detaileddescription>
9+
<para>This is an overview of <computeroutput><ref refid="classtransport_1_1Bicycle" kindref="compound">transport::Bicycle</ref></computeroutput>, the greatest new CPP program. </para> </detaileddescription>
10+
</compounddef>
11+
</doxygen>

example/xml/mountainbike_8cpp.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
<?xml version='1.0' encoding='UTF-8' standalone='no'?>
2-
<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version="1.8.12">
2+
<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version="1.8.14">
33
<compounddef id="mountainbike_8cpp" kind="file" language="C++">
44
<compoundname>mountainbike.cpp</compoundname>
55
<includes refid="mountainbike_8h" local="yes">mountainbike.h</includes>
66
<incdepgraph>
7-
<node id="5">
8-
<label>src/mountainbike.cpp</label>
9-
<link refid="mountainbike_8cpp"/>
10-
<childnode refid="6" relation="include">
7+
<node id="6">
8+
<label>mountainbike.h</label>
9+
<link refid="mountainbike_8h_source"/>
10+
<childnode refid="7" relation="include">
1111
</childnode>
1212
</node>
1313
<node id="7">
1414
<label>transport/bicycle.h</label>
1515
</node>
16-
<node id="6">
17-
<label>mountainbike.h</label>
18-
<link refid="mountainbike_8h_source"/>
19-
<childnode refid="7" relation="include">
16+
<node id="5">
17+
<label>src/mountainbike.cpp</label>
18+
<link refid="mountainbike_8cpp"/>
19+
<childnode refid="6" relation="include">
2020
</childnode>
2121
</node>
2222
</incdepgraph>

example/xml/mountainbike_8h.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
<?xml version='1.0' encoding='UTF-8' standalone='no'?>
2-
<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version="1.8.12">
2+
<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version="1.8.14">
33
<compounddef id="mountainbike_8h" kind="file" language="C++">
44
<compoundname>mountainbike.h</compoundname>
55
<includes local="no">transport/bicycle.h</includes>
66
<includedby refid="mountainbike_8cpp" local="yes">src/mountainbike.cpp</includedby>
77
<incdepgraph>
8-
<node id="10">
9-
<label>transport/bicycle.h</label>
10-
</node>
118
<node id="9">
129
<label>src/mountainbike.h</label>
1310
<link refid="mountainbike_8h"/>
1411
<childnode refid="10" relation="include">
1512
</childnode>
1613
</node>
14+
<node id="10">
15+
<label>transport/bicycle.h</label>
16+
</node>
1717
</incdepgraph>
1818
<innerclass refid="classtransport_1_1MountainBike" prot="public">transport::MountainBike</innerclass>
1919
<innernamespace refid="namespacetransport">transport</innernamespace>

0 commit comments

Comments
 (0)