#include <CachedO.h>
Inheritance diagram for CachedO:
A CachedO object can register itself in a ROList object, which holds an array of pointers to RegO objects. It has an invalidateCache() method, that invalidates the cache.
Author: Benno List, Jenny Böhme
Changelog:
Definition at line 29 of file CachedO.h.
Public Member Functions | |
CachedO (const ROListPoR &rol) | |
Constructor that registers this object in an ROList object. | |
virtual | ~CachedO () |
Virtual destructor to ensure that dynamic casts work. | |
virtual void | invalidateCache ()=0 |
The invalidateCache() method tells the object that its cache is invalid. | |
Private Member Functions | |
CachedO (const CachedO &rhs) | |
Private copy constructor, left unimplemented: No copying! | |
CachedO & | operator= (const CachedO &rhs) |
Private assignment operator, left unimplemented: No assignment! |
|
Constructor that registers this object in an ROList object.
|