Classes | Macros | Typedefs | Enumerations | Variables
autolink.cpp File Reference

Go to the source code of this file.

Classes

class  Autolink_Test
 

Macros

#define ABS(x)   (((x)>0)?(x):-(x))
 

Typedefs

typedef Autolink_Test B
 

Enumerations

enum  GlobEnum { GVal1, GVal2 }
 

Variables

int globVar
 

Detailed Description

Testing automatic link generation.

A link to a member of the Autolink_Test class: Autolink_Test::member,

More specific links to the each of the overloaded members: Autolink_Test::member(int) and Autolink_Test::member(int,int)

A link to a protected member variable of Autolink_Test: Autolink_Test::var,

A link to the global enumeration type GlobEnum.

A link to the define ABS(x).

A link to the destructor of the Autolink_Test class: Autolink_Test::~Autolink_Test,

A link to the typedef B.

A link to the enumeration type Autolink_Test::EType

A link to some enumeration values Autolink_Test::Val1 and GVal2

Definition in file autolink.cpp.

Macro Definition Documentation

#define ABS (   x)    (((x)>0)?(x):-(x))

A macro definition.

Definition at line 93 of file autolink.cpp.

Typedef Documentation

typedef Autolink_Test B

Definition at line 95 of file autolink.cpp.

Enumeration Type Documentation

enum GlobEnum

A global enum.

Enumerator
GVal1 

global enum value 1

GVal2 

global enum value 2

Definition at line 85 of file autolink.cpp.

85  {
86  GVal1, /*!< global enum value 1 */
87  GVal2 /*!< global enum value 2 */
88  };

Variable Documentation

int globVar

A global variable.

Definition at line 82 of file autolink.cpp.