comparison Core/Cache/ICachePageProvider.h @ 3557:4d809b2e1141

better cache toolbox: MemoryObjectCache
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 04 Nov 2019 15:18:38 +0100
parents 4e43e67f8ecf
children 94f4a18a79cc
comparison
equal deleted inserted replaced
3556:87940f7156e0 3557:4d809b2e1141
36 #include <string> 36 #include <string>
37 #include "../IDynamicObject.h" 37 #include "../IDynamicObject.h"
38 38
39 namespace Orthanc 39 namespace Orthanc
40 { 40 {
41 class ICachePageProvider 41 namespace Deprecated
42 { 42 {
43 public: 43 class ICachePageProvider
44 virtual ~ICachePageProvider()
45 { 44 {
46 } 45 public:
46 virtual ~ICachePageProvider()
47 {
48 }
47 49
48 virtual IDynamicObject* Provide(const std::string& id) = 0; 50 virtual IDynamicObject* Provide(const std::string& id) = 0;
49 }; 51 };
52 }
50 } 53 }