* The "api setup" command. * * @ingroup cli */
| 15 | * @ingroup cli |
| 16 | */ |
| 17 | class ApiSetupCommand final : public CLICommand |
| 18 | { |
| 19 | public: |
| 20 | DECLARE_PTR_TYPEDEFS(ApiSetupCommand); |
| 21 | |
| 22 | String GetDescription() const override; |
| 23 | String GetShortDescription() const override; |
| 24 | void InitParameters(boost::program_options::options_description& visibleDesc, |
| 25 | boost::program_options::options_description& hiddenDesc) const override; |
| 26 | int Run(const boost::program_options::variables_map& vm, const std::vector<std::string>& ap) const override; |
| 27 | ImpersonationLevel GetImpersonationLevel() const override; |
| 28 | }; |
| 29 | |
| 30 | } |
| 31 |
nothing calls this directly
no outgoing calls
no test coverage detected