summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/libutil.h
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-11-28 18:49:02 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-11-28 18:49:02 +0000
commit3c845a534e67829227b01b246ac66de7c7b55de3 (patch)
tree593d2592432de513ace434c7544f98afd8237179 /crawl-ref/source/libutil.h
parent95259b9b62799b2e5fe00f8833c28b8a96879e49 (diff)
downloadcrawl-ref-3c845a534e67829227b01b246ac66de7c7b55de3.tar.gz
crawl-ref-3c845a534e67829227b01b246ac66de7c7b55de3.zip
Fixed bad messages when uniques are poisoned by toxic radiance.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2927 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/libutil.h')
-rw-r--r--crawl-ref/source/libutil.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/crawl-ref/source/libutil.h b/crawl-ref/source/libutil.h
index 42102991a4..6ee786b452 100644
--- a/crawl-ref/source/libutil.h
+++ b/crawl-ref/source/libutil.h
@@ -21,25 +21,6 @@
#include <vector>
#include <map>
-// A collection of named things that can be stacked. The collection merges
-// things that should be merged (by name) and outputs a comma-separated list
-// with the preferred description type.
-class named_thing_collection
-{
-public:
- named_thing_collection();
- void add_thing(const std::string &name);
- std::string describe(description_level_type desc,
- const char **plural_qualifiers = NULL,
- const char **no_qualifier_suffix = NULL) const;
- size_t size() const;
- bool empty() const;
-private:
- typedef std::map<std::string, int> name_count_map;
- name_count_map names;
- size_t nnames;
-};
-
extern const char *standard_plural_qualifiers[];
// Applies a description type to a name, but does not pluralise! You