Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
eclipse
GitHub Repository: eclipse/sumo
Path: blob/main/tests/tools/sumolib/xml/comments/data/ptlines.xml
429541 views
1
<?xml version="1.0" encoding="UTF-8"?>
2
3
<ptLines>
4
<!-- comment on single line -->
5
<ptLine id="0" name="bus0" line="line0" type="bus">
6
<route edges="edge0"/> <!-- comment at end of line -->
7
</ptLine>
8
<!-- comment on
9
multiple lines -->
10
11
<ptLine id="1" line="line1" type="bus">
12
<route edges="edge0 edge1"/> <!-- comment starting at the end
13
over multiple lines -->
14
</ptLine>
15
<!-- comment at begin of line --> <ptLine id="2" name="bus2" line="line2" type="bus">
16
<route edges="edge0 edge1 edge2"/>
17
</ptLine>
18
<ptLine id="3" name="bus3" line="line3" type="bus"> <!-- comment in between --> <route edges="edge0 edge1 edge2"/> </ptLine>
19
<ptLine id="4" line="line4" type="bus"> <!-- comment in between
20
over multiple lines --> <route edges="edge0 edge1"/>
21
</ptLine>
22
</ptLines>
23
24