icinga2/lib/base/boolean.hpp

28 lines
313 B
C++
Raw Normal View History

/* 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.
*/
2017-12-31 07:22:16 +01:00
class Boolean
{
public:
static Object::Ptr GetPrototype();
private:
Boolean();
};
}
#endif /* BOOLEAN_H */