2019-02-25 08:48:22 -05:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2014-10-20 15:14:00 -04:00
|
|
|
|
|
|
|
|
#ifndef VARIABLEGETCOMMAND_H
|
|
|
|
|
#define VARIABLEGETCOMMAND_H
|
|
|
|
|
|
|
|
|
|
#include "base/dictionary.hpp"
|
|
|
|
|
#include "base/array.hpp"
|
|
|
|
|
#include "cli/clicommand.hpp"
|
|
|
|
|
#include <ostream>
|
|
|
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The "variable get" command.
|
|
|
|
|
*
|
|
|
|
|
* @ingroup cli
|
|
|
|
|
*/
|
2018-01-04 00:11:04 -05:00
|
|
|
class VariableGetCommand final : public CLICommand
|
2014-10-20 15:14:00 -04:00
|
|
|
{
|
|
|
|
|
public:
|
2014-11-07 06:32:25 -05:00
|
|
|
DECLARE_PTR_TYPEDEFS(VariableGetCommand);
|
2014-10-20 15:14:00 -04:00
|
|
|
|
2018-01-03 23:12:56 -05:00
|
|
|
String GetDescription() const override;
|
|
|
|
|
String GetShortDescription() const override;
|
|
|
|
|
int GetMinArguments() const override;
|
2014-10-20 15:14:00 -04:00
|
|
|
void InitParameters(boost::program_options::options_description& visibleDesc,
|
2017-12-19 09:50:05 -05:00
|
|
|
boost::program_options::options_description& hiddenDesc) const override;
|
2018-01-03 23:12:56 -05:00
|
|
|
int Run(const boost::program_options::variables_map& vm, const std::vector<std::string>& ap) const override;
|
2014-10-20 15:14:00 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif /* VARIABLEGETCOMMAND_H */
|