tool/CommandVersion.cpp
author Florian Pose <fp@igh-essen.com>
Mon, 26 Jan 2009 10:34:53 +0000
changeset 1325 16aacb421bd4
parent 1165 c5d6e28eec91
child 1363 11c0b2caa253
permissions -rw-r--r--
merge -c1602 branches/stable-1.4: Fixed e1000 ring bug.
/*****************************************************************************
 *
 * $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;
}

/*****************************************************************************/