Public Types | |
enum | TEnum { TVal1, TVal2, TVal3 } |
An enum. More... | |
Public Member Functions | |
QTstyle_Test () | |
A constructor. More... | |
~QTstyle_Test () | |
A destructor. More... | |
int | testMe (int a, const char *s) |
A normal member taking two arguments and returning an integer value. More... | |
virtual void | testMeToo (char c1, char c2)=0 |
A pure virtual member. More... | |
Public Attributes | |
enum QTstyle_Test::TEnum * | enumPtr |
Enum pointer. More... | |
enum QTstyle_Test::TEnum | enumVar |
Enum variable. More... | |
int | publicVar |
A public variable. More... | |
int(* | handler )(int a, int b) |
A function variable. More... | |
enum QTstyle_Test::TEnum |
An enum.
More detailed enum description.
Enumerator | |
---|---|
TVal1 |
Enum value TVal1. |
TVal2 |
Enum value TVal2. |
TVal3 |
Enum value TVal3. |
Definition at line 12 of file qtstyle.cpp.
int QTstyle_Test::testMe | ( | int | a, |
const char * | s | ||
) |
A normal member taking two arguments and returning an integer value.
a | an integer argument. |
s | a constant character pointer. |
|
pure virtual |
enum QTstyle_Test::TEnum * QTstyle_Test::enumPtr |
Enum pointer.
Details.
enum QTstyle_Test::TEnum QTstyle_Test::enumVar |
Enum variable.
Details.
int QTstyle_Test::publicVar |