~ubuntu-branches/ubuntu/trusty/manaplus/trusty-proposed

« back to all changes in this revision

Viewing changes to src/utils/stringutils.h

  • Committer: Package Import Robot
  • Author(s): Patrick Matthäi
  • Date: 2013-07-11 10:09:41 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20130711100941-f0rwuvcwgl8ulqo8
Tags: 1.3.7.7.1-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
175
175
 */
176
176
std::string normalize(const std::string &name) A_WARN_UNUSED;
177
177
 
178
 
std::set<int> splitToIntSet(const std::string &text,
179
 
                            const char separator) A_WARN_UNUSED;
 
178
void splitToIntSet(std::set<int> &tokens, const std::string &text,
 
179
                   const char separator);
180
180
 
181
181
std::list<int> splitToIntList(const std::string &text,
182
182
                              const char separator) A_WARN_UNUSED;
198
198
std::string combineDye2(std::string file,
199
199
                        const std::string &dye) A_WARN_UNUSED;
200
200
 
 
201
std::string combineDye3(std::string file,
 
202
                        const std::string &dye) A_WARN_UNUSED;
 
203
 
201
204
std::string packList(const std::list<std::string> &list) A_WARN_UNUSED;
202
205
 
203
206
std::list<std::string> unpackList(const std::string &str) A_WARN_UNUSED;