26 lines
708 B
C++
26 lines
708 B
C++
#ifndef __PLASP_APP__COMMANDS__COMMAND_HELP_H
|
|
#define __PLASP_APP__COMMANDS__COMMAND_HELP_H
|
|
|
|
#include <plasp-app/Command.h>
|
|
#include <plasp-app/OptionGroups.h>
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Command Help
|
|
//
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
class CommandHelp : public Command<CommandHelp>
|
|
{
|
|
public:
|
|
static constexpr auto Name = "help";
|
|
static constexpr auto Description = "Display this help message";
|
|
|
|
public:
|
|
int run(int argc, char **argv);
|
|
};
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#endif
|