Added command for printing version information.

This commit is contained in:
2017-10-13 18:28:33 +02:00
parent 974c94fbb0
commit cde892c771
3 changed files with 46 additions and 7 deletions

View File

@@ -0,0 +1,23 @@
#ifndef __PLASP_APP__COMMANDS__COMMAND_VERSION_H
#define __PLASP_APP__COMMANDS__COMMAND_VERSION_H
#include <plasp-app/Command.h>
#include <plasp-app/OptionGroups.h>
////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Command Version
//
////////////////////////////////////////////////////////////////////////////////////////////////////
class CommandVersion : public Command<>
{
public:
CommandVersion();
int run(int argc, char **argv);
};
////////////////////////////////////////////////////////////////////////////////////////////////////
#endif