icinga2/lib/icinga/command.hpp

31 lines
496 B
C++
Raw Permalink Normal View History

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