tool/CommandConfig.h
changeset 1142 59be91dfcbe1
child 1147 0eac1ee8512a
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tool/CommandConfig.h	Thu Jul 24 13:27:06 2008 +0000
@@ -0,0 +1,43 @@
+/*****************************************************************************
+ *
+ * $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