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.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/Common/StorageManager.h b/src/Common/StorageManager.h
index d6cb5f5..a28f7a4 100644
--- a/src/Common/StorageManager.h
+++ b/src/Common/StorageManager.h
@@ -51,17 +51,17 @@ 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);
+ std::set<Core::String> listTypes() throw (Core::Exception);
+ std::set<Core::String> list(const Core::String &type) throw (Core::Exception);
- bool exists(const std::string &type, const std::string &name) throw (Core::Exception);
+ bool exists(const Core::String &type, const Core::String &name) 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);
+ void store(const Core::String &type, const Core::String &name, const XmlData *data) throw (Core::Exception);
+ boost::shared_ptr<XmlData> load(const Core::String &type, const Core::String &name) throw (Core::Exception);
- void copy(const std::string &type, const std::string &name, const std::string &newName) throw (Core::Exception);
- void rename(const std::string &type, const std::string &name, const std::string &newName) throw (Core::Exception);
- void remove(const std::string &type, const std::string &name) throw (Core::Exception);
+ void copy(const Core::String &type, const Core::String &name, const Core::String &newName) throw (Core::Exception);
+ void rename(const Core::String &type, const Core::String &name, const Core::String &newName) throw (Core::Exception);
+ void remove(const Core::String &type, const Core::String &name) throw (Core::Exception);
};
}