]> granicus.if.org Git - icinga2/blob - lib/base/number.hpp
Merge pull request #7185 from Icinga/bugfix/gelfwriter-wrong-log-facility
[icinga2] / lib / base / number.hpp
1 /* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2
3 #ifndef NUMBER_H
4 #define NUMBER_H
5
6 #include "base/i2-base.hpp"
7 #include "base/object.hpp"
8
9 namespace icinga {
10
11 class Value;
12
13 /**
14  * Number class.
15  */
16 class Number
17 {
18 public:
19         static Object::Ptr GetPrototype();
20
21 private:
22         Number();
23 };
24
25 }
26
27 #endif /* NUMBER_H */