]> granicus.if.org Git - icinga2/blob - lib/cli/featurelistcommand.hpp
Added ca restore command+docs to undo effects of ca remove
[icinga2] / lib / cli / featurelistcommand.hpp
1 /* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2
3 #ifndef FEATURELISTCOMMAND_H
4 #define FEATURELISTCOMMAND_H
5
6 #include "cli/clicommand.hpp"
7
8 namespace icinga
9 {
10
11 /**
12  * The "feature list" command.
13  *
14  * @ingroup cli
15  */
16 class FeatureListCommand final : public CLICommand
17 {
18 public:
19         DECLARE_PTR_TYPEDEFS(FeatureListCommand);
20
21         String GetDescription() const override;
22         String GetShortDescription() const override;
23         int Run(const boost::program_options::variables_map& vm, const std::vector<std::string>& ap) const override;
24 };
25
26 }
27
28 #endif /* FEATURELISTCOMMAND_H */