Public Types | Public Member Functions | Public Attributes | List of all members
QTstyle_Test Class Referenceabstract

A test class. More...

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::TEnumenumPtr
 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...
 

Detailed Description

A test class.

A more elaborate class description.

Definition at line 6 of file qtstyle.cpp.

Member Enumeration Documentation

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.

12  {
13  TVal1, /*!< Enum value TVal1. */
14  TVal2, /*!< Enum value TVal2. */
15  TVal3 /*!< Enum value TVal3. */
16  }

Constructor & Destructor Documentation

QTstyle_Test::QTstyle_Test ( )

A constructor.

A more elaborate description of the constructor.

QTstyle_Test::~QTstyle_Test ( )

A destructor.

A more elaborate description of the destructor.

Member Function Documentation

int QTstyle_Test::testMe ( int  a,
const char *  s 
)

A normal member taking two arguments and returning an integer value.

Parameters
aan integer argument.
sa constant character pointer.
Returns
The test results
See also
QTstyle_Test(), ~QTstyle_Test(), testMeToo() and publicVar()
virtual void QTstyle_Test::testMeToo ( char  c1,
char  c2 
)
pure virtual

A pure virtual member.

See also
testMe()
Parameters
c1the first argument.
c2the second argument.

Member Data Documentation

enum QTstyle_Test::TEnum * QTstyle_Test::enumPtr

Enum pointer.

Details.

enum QTstyle_Test::TEnum QTstyle_Test::enumVar

Enum variable.

Details.

int(* QTstyle_Test::handler) (int a, int b)

A function variable.

Details.

Definition at line 63 of file qtstyle.cpp.

int QTstyle_Test::publicVar

A public variable.

Details.

Definition at line 57 of file qtstyle.cpp.


The documentation for this class was generated from the following file: