#include <Foo.h>
Inheritance diagram for Foo:

Public Methods | |
| Foo () | |
| constructor A more detailed description of the constructur and its peculiarities. More... | |
| Foo (const Foo &) | |
| constructor with param A more detailed description of this constructor and why it differs from the previous one. More... | |
| ~Foo () | |
| destructor, a simple one. More... | |
| Foo& | operator= (const Foo &) |
| Overload assignment. More... | |
| int | getCount () const |
| A get function. More... | |
| void | setCount (const int _newValue) |
| A set function the peculiarity of this function. More... | |
| const Bar& | getBar (const Intermediate &c) const |
| a public member function showing links to argument and type classes. More... | |
Protected Attributes | |
| double | doubleCount |
| a protected member variable. More... | |
Private Attributes | |
| int | m_currentCount |
| private members only show up if your doxygen configuration file is set up accordingly. More... | |
A Foo object doesn't do much here, but hold a count to get & set. It is used by FooInstantitor to blah, blah.
// Construct a foo object
Foo myFoo;
myFoo.setCount(0);
int fooCount = myFoo.getCount();
|
|
constructor A more detailed description of the constructur and its peculiarities.
|
|
|
constructor with param A more detailed description of this constructor and why it differs from the previous one.
|
|
|
destructor, a simple one.
|
|
|
a public member function showing links to argument and type classes.
|
|
|
A get function.
|
|
|
Overload assignment.
|
|
|
A set function the peculiarity of this function.
|
|
|
a protected member variable.
|
|
|
private members only show up if your doxygen configuration file is set up accordingly.
|