// SPDX-FileCopyrightText: 2012 Icinga GmbH // SPDX-License-Identifier: GPL-2.0-or-later #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 */