icinga2/lib/base/number.hpp
Michael Friedrich d14a88235d Replace Copyright header with a short version, part I
CLion -> replace in path
2019-02-25 14:48:22 +01:00

28 lines
307 B
C++

/* 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.
*/
class Number
{
public:
static Object::Ptr GetPrototype();
private:
Number();
};
}
#endif /* NUMBER_H */