File: headerfile.h

package info (click to toggle)
breathe 4.36.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,224 kB
  • sloc: python: 12,703; cpp: 1,737; makefile: 523; xml: 168; sh: 54; ansic: 52
file content (29 lines) | stat: -rw-r--r-- 403 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29

/**
 * \class ClassTest
 * \headerfile hearderfile.h "specific/headerfile.h"
 * \brief Class showing the header where it is defined
 */
class ClassTest
{

public:

    //! \brief Constructor
    ClassTest();
};


/**
 * \class ClassTest2 headerfile.h "specific/headerfile.h"
 * \brief Another way to show the header file
 */
class ClassTest2
{

public:

    //! \brief Constructor
    ClassTest2();
}