JavaDoc Style
Public Types | Public Member Functions | Public Attributes | List of all members
Test Class Referenceabstract

A test class. More...

Public Types

enum  TEnum { TVal1, TVal2, TVal3 }
 An enum. More...
 

Public Member Functions

 Test ()
 A constructor. More...
 
 ~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 Test::TEnumenumPtr
 enum pointer. More...
 
enum 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.

Member Enumeration Documentation

An enum.

More detailed enum description.

Enumerator
TVal1 

enum value TVal1.

TVal2 

enum value TVal2.

TVal3 

enum value TVal3.

Constructor & Destructor Documentation

Test::Test ( )

A constructor.

A more elaborate description of the constructor.

Test::~Test ( )

A destructor.

A more elaborate description of the destructor.

Member Function Documentation

int 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.
See Also
Test()
~Test()
testMeToo()
publicVar()
Returns
The test results
virtual void 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 Test::TEnum * Test::enumPtr

enum pointer.

Details.

enum Test::TEnum Test::enumVar

enum variable.

Details.

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

a function variable.

Details.

int Test::publicVar

a public variable.

Details.


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