Main Page
Related Pages
Modules
Namespaces
Classes
Files
Examples
File List
File Members
doxygen-1.8.11
examples
jdstyle.cpp
Go to the documentation of this file.
1
/**
2
* A test class. A more elaborate class description.
3
*/
4
5
class
Javadoc_Test
6
{
7
public
:
8
9
/**
10
* An enum.
11
* More detailed enum description.
12
*/
13
14
enum
TEnum
{
15
TVal1
,
/**< enum value TVal1. */
16
TVal2
,
/**< enum value TVal2. */
17
TVal3
/**< enum value TVal3. */
18
}
19
*
enumPtr
,
/**< enum pointer. Details. */
20
enumVar
;
/**< enum variable. Details. */
21
22
/**
23
* A constructor.
24
* A more elaborate description of the constructor.
25
*/
26
Javadoc_Test
();
27
28
/**
29
* A destructor.
30
* A more elaborate description of the destructor.
31
*/
32
~Javadoc_Test
();
33
34
/**
35
* a normal member taking two arguments and returning an integer value.
36
* @param a an integer argument.
37
* @param s a constant character pointer.
38
* @see Javadoc_Test()
39
* @see ~Javadoc_Test()
40
* @see testMeToo()
41
* @see publicVar()
42
* @return The test results
43
*/
44
int
testMe
(
int
a
,
const
char
*
s
);
45
46
/**
47
* A pure virtual member.
48
* @see testMe()
49
* @param c1 the first argument.
50
* @param c2 the second argument.
51
*/
52
virtual
void
testMeToo
(
char
c1
,
char
c2) = 0;
53
54
/**
55
* a public variable.
56
* Details.
57
*/
58
int
publicVar
;
59
60
/**
61
* a function variable.
62
* Details.
63
*/
64
int
(*
handler
)(
int
a
,
int
b
);
65
};
66
Javadoc_Test::TVal2
Definition:
jdstyle.cpp:16
Javadoc_Test::TEnum
TEnum
Definition:
jdstyle.cpp:14
Javadoc_Test::handler
int(* handler)(int a, int b)
Definition:
jdstyle.cpp:64
Javadoc_Test::testMeToo
virtual void testMeToo(char c1, char c2)=0
Javadoc_Test::enumVar
enum Javadoc_Test::TEnum enumVar
a
const double a
Definition:
gUpMuFluxGen.cxx:164
Javadoc_Test::Javadoc_Test
Javadoc_Test()
keras_to_tensorflow.int
int
Definition:
keras_to_tensorflow.py:69
ValidateOpDetReco.c1
c1
Definition:
ValidateOpDetReco.py:586
Javadoc_Test::enumPtr
enum Javadoc_Test::TEnum * enumPtr
Javadoc_Test::testMe
int testMe(int a, const char *s)
Javadoc_Test::TVal3
Definition:
jdstyle.cpp:17
Javadoc_Test::~Javadoc_Test
~Javadoc_Test()
b
static bool * b
Definition:
config.cpp:1043
Javadoc_Test::publicVar
int publicVar
Definition:
jdstyle.cpp:58
Javadoc_Test::TVal1
Definition:
jdstyle.cpp:15
Javadoc_Test
Definition:
jdstyle.cpp:5
s
static QCString * s
Definition:
config.cpp:1042
Generated by
1.8.11