File: B.h

package info (click to toggle)
doc%2B%2B 3.4.10-3.2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 2,328 kB
  • ctags: 1,486
  • sloc: lex: 10,379; ansic: 7,823; sh: 6,150; cpp: 5,572; makefile: 340; yacc: 316; java: 274; sed: 16
file content (20 lines) | stat: -rw-r--r-- 608 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/** Just to make the class graph look more interesting.
    Here we show multiple inheritance from one docified class and a nondocified
    one.

    This is how this documentation has been generated:
    \begin{verbatim}
    /** Just to make the class graph look more interesting.
        Here we show multiple inheritance from one docified class and a nondocified
        one.

        This is how this documentation has been generated:
    * /

    class Intermediate : public CommonBase, public NotDocified {
      };
    \end{verbatim}
*/
class Intermediate : public CommonBase, public NotDocified
{
};