1<documentation title="Class Declarations">
2    <standard>
3    <![CDATA[
4    The opening brace of a class must be on the line after the definition by itself.
5    ]]>
6    </standard>
7    <code_comparison>
8        <code title="Valid: Opening brace on the correct line.">
9        <![CDATA[
10class Foo
11<em>{</em>
12}
13        ]]>
14        </code>
15        <code title="Invalid: Opening brace on same line as declaration.">
16        <![CDATA[
17class Foo <em>{</em>
18}
19        ]]>
20        </code>
21    </code_comparison>
22</documentation>
23