* removed paths in include directives * changed cmake to provide necessary header search paths * changed name of version.h to productVersion.h due to name conflict
24 lines
401 B
C++
24 lines
401 B
C++
#ifndef STORAGE_CACHE_H
|
|
#define STORAGE_CACHE_H
|
|
|
|
#include <map>
|
|
|
|
#include "StorageAccessProxy.h"
|
|
|
|
class StorageCache
|
|
: public StorageAccessProxy
|
|
{
|
|
public:
|
|
void clear();
|
|
|
|
virtual std::shared_ptr<Graph> getGraphForAll() const;
|
|
|
|
virtual StorageStats getStorageStats() const;
|
|
|
|
private:
|
|
mutable std::shared_ptr<Graph> m_graphForAll;
|
|
mutable StorageStats m_storageStats;
|
|
};
|
|
|
|
#endif // STORAGE_CACHE_H
|