icinga2/lib/base/boolean.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
313 B
C++

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#ifndef BOOLEAN_H
#define BOOLEAN_H
#include "base/i2-base.hpp"
#include "base/object.hpp"
namespace icinga {
class Value;
/**
* Boolean class.
*/
class Boolean
{
public:
static Object::Ptr GetPrototype();
private:
Boolean();
};
}
#endif /* BOOLEAN_H */