2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2014-12-12 15:19:23 +01:00
|
|
|
|
|
|
|
#ifndef BOOLEAN_H
|
|
|
|
#define BOOLEAN_H
|
|
|
|
|
|
|
|
#include "base/i2-base.hpp"
|
|
|
|
#include "base/object.hpp"
|
|
|
|
|
|
|
|
namespace icinga {
|
|
|
|
|
|
|
|
class Value;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Boolean class.
|
|
|
|
*/
|
2017-12-31 07:22:16 +01:00
|
|
|
class Boolean
|
2014-12-12 15:19:23 +01:00
|
|
|
{
|
|
|
|
public:
|
2018-01-04 04:25:35 +01:00
|
|
|
static Object::Ptr GetPrototype();
|
2014-12-12 15:19:23 +01:00
|
|
|
|
|
|
|
private:
|
2018-01-04 04:25:35 +01:00
|
|
|
Boolean();
|
2014-12-12 15:19:23 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* BOOLEAN_H */
|