Main Page | Class Hierarchy | Class List | File List | Class Members | File Members | Related Pages

EvictionMngr.h

Go to the documentation of this file.
00001 00031 #ifndef EVICTIONMNGR_H 00032 #define EVICTIONMNGR_H 00033 00034 #include <string> 00035 00045 class EvictionMngr 00046 { 00047 00048 public: 00056 virtual void invocation_active(const std::string& evictable_id)= 0; 00057 00058 }; 00059 00072 class Evictable 00073 { 00074 public: 00079 virtual bool evicted() = 0; 00080 }; 00081 00082 #endif