summaryrefslogtreecommitdiffstats
path: root/src/Client/UserListCommands.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/Client/UserListCommands.h
parente1d8490f0654a3da0b900407d80d91d8d0da68c8 (diff)
downloadmad-b40ba0cf91603b695f1f2380cbd39966a458f22f.tar
mad-b40ba0cf91603b695f1f2380cbd39966a458f22f.zip
Use Unicode-aware String class instead of std::string
Diffstat (limited to 'src/Client/UserListCommands.h')
-rw-r--r--src/Client/UserListCommands.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/Client/UserListCommands.h b/src/Client/UserListCommands.h
index 8c77e7f..ab20974 100644
--- a/src/Client/UserListCommands.h
+++ b/src/Client/UserListCommands.h
@@ -44,21 +44,21 @@ class MAD_CLIENT_EXPORT UserListCommands {
UserListCommands();
- static const Command* findCommand(const std::string& command);
- static void printUsage(const std::string& command);
+ static const Command* findCommand(const Core::String& command);
+ static void printUsage(const Core::String& command);
- static void helpCommand(CommandParser *commandParser, const std::vector<std::string> &args);
- static void listCommand(CommandParser *commandParser, const std::vector<std::string> &args);
- static void showListCommand(CommandParser *commandParser, const std::vector<std::string> &args);
- static void importCommand(CommandParser *commandParser, const std::vector<std::string> &args);
+ static void helpCommand(CommandParser *commandParser, const std::vector<Core::String> &args);
+ static void listCommand(CommandParser *commandParser, const std::vector<Core::String> &args);
+ static void showListCommand(CommandParser *commandParser, const std::vector<Core::String> &args);
+ static void importCommand(CommandParser *commandParser, const std::vector<Core::String> &args);
static void printUserList(const Common::UserLists::UserList &list);
static void printSheet(const XLSSheet &sheet, unsigned rowCount = 0);
- static void printPadded(const std::string &str, unsigned length);
- static void printDelimiter(unsigned length);
+ static void printPadded(const Core::String &str, boost::int32_t length);
+ static void printDelimiter(boost::int32_t length);
public:
- static void userListCommand(CommandParser *commandParser, const std::vector<std::string> &args);
+ static void userListCommand(CommandParser *commandParser, const std::vector<Core::String> &args);
};
}