2026-01-27 09:06:40 -05:00
|
|
|
// SPDX-FileCopyrightText: 2012 Icinga GmbH <https://icinga.com>
|
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2014-12-12 09:19:23 -05: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 01:22:16 -05:00
|
|
|
class Boolean
|
2014-12-12 09:19:23 -05:00
|
|
|
{
|
|
|
|
|
public:
|
2018-01-03 22:25:35 -05:00
|
|
|
static Object::Ptr GetPrototype();
|
2014-12-12 09:19:23 -05:00
|
|
|
|
|
|
|
|
private:
|
2018-01-03 22:25:35 -05:00
|
|
|
Boolean();
|
2014-12-12 09:19:23 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif /* BOOLEAN_H */
|