summaryrefslogtreecommitdiffstats
path: root/src/Common/StorageManager.h
diff options
context:
space:
mode:
authorMatthias Schiffer <matthias@gamezock.de>2009-09-27 19:58:24 +0200
committerMatthias Schiffer <matthias@gamezock.de>2009-09-27 19:58:24 +0200
commitb40ba0cf91603b695f1f2380cbd39966a458f22f (patch)
tree1fec48ddc59eb1392fac38495b230e4b2cbf7528 /src/Common/StorageManager.h
parente1d8490f0654a3da0b900407d80d91d8d0da68c8 (diff)
downloadmad-b40ba0cf91603b695f1f2380cbd39966a458f22f.tar
mad-b40ba0cf91603b695f1f2380cbd39966a458f22f.zip
Use Unicode-aware String class instead of std::string
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);
};
}