MITK-IGT
IGT Extension of MITK
Loading...
Searching...
No Matches
qtstyle.cpp
Go to the documentation of this file.
1
7{
8 public:
9
11
18
21
23
25
29
31
35
37
43 int testMe(int a,const char *s);
44
46
51 virtual void testMeToo(char c1,char c2) = 0;
52
54
58
60
63 int (*handler)(int a,int b);
64};
65
A test class.
Definition qtstyle.cpp:7
TEnum
An enum.
Definition qtstyle.cpp:12
QTstyle_Test()
A constructor.
enum QTstyle_Test::TEnum enumVar
Enum variable.
int(* handler)(int a, int b)
A function variable.
Definition qtstyle.cpp:63
~QTstyle_Test()
A destructor.
int testMe(int a, const char *s)
A normal member taking two arguments and returning an integer value.
enum QTstyle_Test::TEnum * enumPtr
Enum pointer.
int publicVar
A public variable.
Definition qtstyle.cpp:57
virtual void testMeToo(char c1, char c2)=0
A pure virtual member.