summaryrefslogtreecommitdiffstats
path: root/src/Common/RequestHandlerGroup.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/RequestHandlerGroup.h
parente1d8490f0654a3da0b900407d80d91d8d0da68c8 (diff)
downloadmad-b40ba0cf91603b695f1f2380cbd39966a458f22f.tar
mad-b40ba0cf91603b695f1f2380cbd39966a458f22f.zip
Use Unicode-aware String class instead of std::string
Diffstat (limited to 'src/Common/RequestHandlerGroup.h')
-rw-r--r--src/Common/RequestHandlerGroup.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Common/RequestHandlerGroup.h b/src/Common/RequestHandlerGroup.h
index d1b7b25..ff21797 100644
--- a/src/Common/RequestHandlerGroup.h
+++ b/src/Common/RequestHandlerGroup.h
@@ -23,9 +23,9 @@
#include "export.h"
#include "RequestHandler.h"
+#include <Core/String.h>
#include <set>
-#include <string>
namespace Mad {
namespace Common {
@@ -35,9 +35,9 @@ class RequestHandlerGroup {
RequestHandlerGroup() {}
public:
- virtual const std::set<std::string>& getPacketTypes() = 0;
+ virtual const std::set<Core::String>& getPacketTypes() = 0;
- virtual boost::shared_ptr<RequestHandler> createRequestHandler(Application *application, const std::string &type) = 0;
+ virtual boost::shared_ptr<RequestHandler> createRequestHandler(Application *application, const Core::String &type) = 0;
virtual ~RequestHandlerGroup() {}
};