icinga2/lib/base/number.hpp

28 lines
307 B
C++
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#ifndef NUMBER_H
#define NUMBER_H
#include "base/i2-base.hpp"
#include "base/object.hpp"
namespace icinga {
class Value;
/**
* Number class.
*/
2017-12-31 07:22:16 +01:00
class Number
{
public:
static Object::Ptr GetPrototype();
private:
Number();
};
}
#endif /* NUMBER_H */