From 3c845a534e67829227b01b246ac66de7c7b55de3 Mon Sep 17 00:00:00 2001 From: dshaligram Date: Wed, 28 Nov 2007 18:49:02 +0000 Subject: 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 --- crawl-ref/source/libutil.h | 19 ------------------- 1 file changed, 19 deletions(-) (limited to 'crawl-ref/source/libutil.h') 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 #include -// 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 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 -- cgit v1.2.3-54-g00ecf