icinga2/lib/icinga/command.hpp

31 lines
496 B
C++
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#ifndef COMMAND_H
#define COMMAND_H
2014-05-25 16:23:35 +02:00
#include "icinga/i2-icinga.hpp"
2018-01-18 13:50:38 +01:00
#include "icinga/command-ti.hpp"
2014-05-25 16:23:35 +02:00
#include "remote/messageorigin.hpp"
namespace icinga
{
/**
* A command.
*
2013-08-20 08:29:38 +02:00
* @ingroup icinga
*/
2017-12-31 07:22:16 +01:00
class Command : public ObjectImpl<Command>
{
public:
2014-11-03 00:44:04 +01:00
DECLARE_OBJECT(Command);
//virtual Dictionary::Ptr Execute(const Object::Ptr& context) = 0;
void Validate(int types, const ValidationUtils& utils) override;
};
}
#endif /* COMMAND_H */