tool/CommandConfig.h
author Florian Pose <fp@igh-essen.com>
Thu, 24 Jul 2008 15:06:47 +0000
changeset 1145 133cf4631fcc
parent 1142 59be91dfcbe1
child 1147 0eac1ee8512a
permissions -rw-r--r--
Force reconfiguration after attachment.
/*****************************************************************************
 *
 * $Id$
 *
 ****************************************************************************/

#ifndef __COMMANDCONFIG_H__
#define __COMMANDCONFIG_H__

#include <list>
using namespace std;

#include "Command.h"

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

class CommandConfig:
    public Command
{
    public:
        CommandConfig();

        string helpString() const;
        void execute(MasterDevice &, const StringVector &);

	protected:
		struct Info {
			string alias;
			string pos;
			string ident;
			string att;
			string op;
		};

		typedef list<ec_ioctl_config_t> ConfigList;

		void showDetailedConfigs(MasterDevice &, const ConfigList &);
		void listConfigs(const ConfigList &);
};

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

#endif