tool/CommandVersion.cpp
author Florian Pose <fp@igh-essen.com>
Mon, 29 Dec 2008 15:24:37 +0000
branchstable-1.4
changeset 1688 12046addaec5
parent 1165 c5d6e28eec91
child 1363 11c0b2caa253
permissions -rw-r--r--
Output vendor Id in hex.
/*****************************************************************************
 *
 * $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;
}

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