#include <Cleanup_Strategies_T.h>
Inheritance diagram for ACE_Null_Cleanup_Strategy:


Public Methods | |
| virtual int | cleanup (CONTAINER &container, KEY *key, VALUE *value) |
| The dummy cleanup method. More... | |
This class simply does nothing at all! Can be used to nullify the effect of the Cleanup Strategy.
Definition at line 130 of file Cleanup_Strategies_T.h.
|
||||||||||||||||||||
|
The dummy cleanup method.
Reimplemented from ACE_Cleanup_Strategy. Definition at line 78 of file Cleanup_Strategies_T.cpp.
00081 {
00082 ACE_UNUSED_ARG (container);
00083 ACE_UNUSED_ARG (key);
00084 ACE_UNUSED_ARG (value);
00085
00086 return 0;
00087 }
|
1.2.14 written by Dimitri van Heesch,
© 1997-2002