mirror of
https://gitlab.com/etherlab.org/ethercat.git
synced 2026-09-25 11:33:51 +08:00
Added 'ethercat version' command.
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
/*****************************************************************************
|
||||
*
|
||||
* $Id$
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#include <iostream>
|
||||
using namespace std;
|
||||
|
||||
#include "CommandVersion.h"
|
||||
|
||||
/*****************************************************************************/
|
||||
|
||||
CommandVersion::CommandVersion():
|
||||
Command("version", "Show version information.")
|
||||
{
|
||||
}
|
||||
|
||||
/****************************************************************************/
|
||||
|
||||
string CommandVersion::helpString() const
|
||||
{
|
||||
stringstream str;
|
||||
|
||||
str << getName() << " [OPTIONS]" << endl
|
||||
<< endl
|
||||
<< getBriefDescription() << endl;
|
||||
|
||||
return str.str();
|
||||
}
|
||||
|
||||
/****************************************************************************/
|
||||
|
||||
void CommandVersion::execute(MasterDevice &m, const StringVector &args)
|
||||
{
|
||||
cout << "IgH EtherCAT master " << EC_MASTER_VERSION << endl;
|
||||
}
|
||||
|
||||
/*****************************************************************************/
|
||||
Reference in New Issue
Block a user