#include "inc/class.h"
Public Member Functions | |
Test () | |
Test (const Test &) | |
void | test () |
void | example () |
a member function More... | |
void | example () |
An example member function. More... | |
int | example (int p1, int p2) throw (std::out_of_range) |
void | ungrouped () |
void | drawRect (int, int, int, int) |
void | drawRect (const Rect &r) |
void | drawRect (const Point &topLeft, const Point &bottomRight) |
void | method () |
A group of functions. | |
void | foo () |
void | bar () |
Related Functions | |
(Note that these are not member functions.) | |
void | function () |
void | another () |
A short description.
This is a test class.
A template class
A test class.
More details about this class.
A Test class. More details about this class.
T | A template parameter. |
A test
A test class
Some details about the Test class.
More text.
void Test< T, i >::bar | ( | ) |
bar function
void Test< T, i >::drawRect | ( | int | x, |
int | y, | ||
int | w, | ||
int | h | ||
) |
This command draws a rectangle with a left upper corner at ( x , y ), width w and height h.
Definition at line 12 of file 041_overload.cpp.
void Test< T, i >::drawRect | ( | const Rect & | r | ) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
Definition at line 13 of file 041_overload.cpp.
void Test< T, i >::drawRect | ( | const Point & | topLeft, |
const Point & | bottomRight | ||
) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
More text.
Definition at line 18 of file 041_overload.cpp.
void Test< T, i >::example | ( | ) |
void Test< T, i >::example | ( | ) |
An example member function.
More details about this function.
int Test< T, i >::example | ( | int | p1, |
int | p2 | ||
) | |||
throw | ( | std::out_of_range | |
) |
An example member function.
p1 | First parameter. |
p2 | Second parameter. |
std::out_of_range | parameter is out of range. |
0 | if p1 and p2 are equal |
-1 | if p1 is smaller than p2 |
1 | if p1 is bigger than p2 |
void Test< T, i >::foo | ( | ) |
foo function
void Test< T, i >::ungrouped | ( | ) |
ungrouped function
|
related |
Another function