BoilerPlate: Reusable CORBA |
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
Copyright © BoilerPlate.org | Generated on Tue Nov 30 16:22:32 2004 for BoilerPlate by 1.3.7 |