Updated to version 79b7bde of tinygettext
[supertux.git] / external / tinygettext / include / tinygettext / plural_forms.hpp
1 //  tinygettext - A gettext replacement that works directly on .po files
2 //  Copyright (C) 2006 Ingo Ruhnke <grumbel@gmx.de>
3 //
4 //  This program is free software; you can redistribute it and/or
5 //  modify it under the terms of the GNU General Public License
6 //  as published by the Free Software Foundation; either version 2
7 //  of the License, or (at your option) any later version.
8 //
9 //  This program is distributed in the hope that it will be useful,
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 //  GNU General Public License for more details.
13 //
14 //  You should have received a copy of the GNU General Public License
15 //  along with this program; if not, write to the Free Software
16 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
17
18 #ifndef HEADER_TINYGETTEXT_PLURAL_FORMS_HPP
19 #define HEADER_TINYGETTEXT_PLURAL_FORMS_HPP
20
21 #include <string>
22
23 namespace tinygettext {
24
25 typedef unsigned int (*PluralFunc)(int n);
26
27 class PluralForms
28 {
29 private:
30   unsigned int nplural;
31   PluralFunc   plural;
32
33 public:
34   static PluralForms from_string(const std::string& str);
35
36   PluralForms()
37     : nplural(0),
38       plural(0)
39   {}
40
41   PluralForms(unsigned int nplural_, PluralFunc plural_)
42     : nplural(nplural_), 
43       plural(plural_)
44   {}
45
46   unsigned int get_nplural() const { return nplural; }
47   unsigned int get_plural(int n) const { if (plural) return plural(n); else return 0; }
48
49   bool operator==(const PluralForms& other) { return nplural == other.nplural && plural == other.plural; }
50   bool operator!=(const PluralForms& other) { return !(*this == other); }
51
52   operator bool() const {
53     return plural;
54   }
55 };
56
57 } // namespace tinygettext
58
59 #endif 
60
61 /* EOF */