summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/hiscores.h
diff options
context:
space:
mode:
authorStefan O'Rear <stefanor@cox.net>2009-11-12 17:36:34 -0800
committerStefan O'Rear <stefanor@cox.net>2009-11-12 17:36:34 -0800
commitc0bb067ecc217ce5d39171332fe361dc0ac1b124 (patch)
treeea660bd364f96802541a2b767389ad0b59fec3f8 /crawl-ref/source/hiscores.h
parent36bf008a572e07ee3f26751d15adacc7e26a3390 (diff)
downloadcrawl-ref-c0bb067ecc217ce5d39171332fe361dc0ac1b124.tar.gz
crawl-ref-c0bb067ecc217ce5d39171332fe361dc0ac1b124.zip
Add summoner chain information to death reports
Diffstat (limited to 'crawl-ref/source/hiscores.h')
-rw-r--r--crawl-ref/source/hiscores.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/crawl-ref/source/hiscores.h b/crawl-ref/source/hiscores.h
index 29e15ce074..2fc108c37d 100644
--- a/crawl-ref/source/hiscores.h
+++ b/crawl-ref/source/hiscores.h
@@ -32,6 +32,8 @@ std::string xlog_status_line();
std::string xlog_unescape(const std::string &);
std::string xlog_escape(const std::string &);
+std::vector<std::string> xlog_split_fields(const std::string &s);
+
class xlog_fields
{
public:
@@ -50,9 +52,6 @@ public:
private:
void map_fields() const;
- std::string::size_type next_separator(const std::string &s,
- std::string::size_type start) const;
- std::vector<std::string> split_fields(const std::string &s) const;
private:
typedef std::vector< std::pair<std::string, std::string> > xl_fields;