Added a bit more documentation, more to follow (I hope)

This commit is contained in:
maartenkeijzer 2001-02-13 14:43:54 +00:00
commit 07bc61e694

View file

@ -28,7 +28,20 @@
#include <functional> #include <functional>
/// Base class for functors to get a nice hierarchy diagram /** Base class for functors to get a nice hierarchy diagram
That's actually quite an understatement as it does quite a bit more than
just that. By having all functors derive from the same base class, we can
do some memory management that would otherwise be very hard.
The memory management base class is called eoFunctorStore, and it supports
a member add() to add a pointer to a functor. When the functorStore is
destroyed, it will delete all those pointers. So beware: do not delete
the functorStore before you are done with anything that might have been allocated.
@see eoFunctorStore
*/
class eoFunctorBase class eoFunctorBase
{ {
public : public :