summaryrefslogtreecommitdiffstats
path: root/src/Common/StorageManager.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Common/StorageManager.h')
-rw-r--r--src/Common/StorageManager.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Common/StorageManager.h b/src/Common/StorageManager.h
index c81c707..98533fb 100644
--- a/src/Common/StorageManager.h
+++ b/src/Common/StorageManager.h
@@ -51,6 +51,9 @@ class MAD_COMMON_EXPORT StorageManager {
void setBackend(boost::shared_ptr<StorageBackend> newBackend);
void unsetBackend(boost::shared_ptr<StorageBackend> oldBackend);
+ std::set<std::string> listTypes() throw (Core::Exception);
+ std::set<std::string> list(const std::string &type) throw (Core::Exception);
+
void store(const std::string &type, const std::string &name, const XmlData *data) throw (Core::Exception);
boost::shared_ptr<XmlData> load(const std::string &type, const std::string &name) throw (Core::Exception);
};