tool/CommandVersion.cpp
author Florian Pose <fp@igh-essen.com>
Tue, 18 Nov 2008 11:20:30 +0000
changeset 1315 26b4f94cfdfb
parent 1165 c5d6e28eec91
child 1363 11c0b2caa253
permissions -rw-r--r--
Output debug message only on debug level > 0.
/*****************************************************************************
 *
 * $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;
}

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