tool/Command.h
changeset 1804 742607c464c4
parent 1363 11c0b2caa253
child 1826 ec6223c3b7ec
--- a/tool/Command.h	Tue Feb 02 19:38:32 2010 +0100
+++ b/tool/Command.h	Fri Feb 05 10:29:47 2010 +0100
@@ -71,7 +71,7 @@
 {
     public:
         Command(const string &, const string &);
-		virtual ~Command();
+        virtual ~Command();
 
         const string &getName() const;
         const string &getBriefDescription() const;
@@ -82,7 +82,7 @@
             Verbose
         };
         void setVerbosity(Verbosity);
-		Verbosity getVerbosity() const;
+        Verbosity getVerbosity() const;
         void setAlias(int);
         int getAlias() const;
         void setPosition(int);
@@ -91,10 +91,10 @@
         int getDomain() const;
         void setDataType(const string &);
         const string &getDataType() const;
-		void setForce(bool);
-		bool getForce() const;
-		void setOutputFile(const string &);
-		const string &getOutputFile() const;
+        void setForce(bool);
+        bool getForce() const;
+        void setOutputFile(const string &);
+        const string &getOutputFile() const;
 
         bool matchesSubstr(const string &) const;
         bool matchesAbbrev(const string &) const;
@@ -107,7 +107,7 @@
         static string numericInfo();
 
     protected:
-		enum {BreakAfterBytes = 16};
+        enum {BreakAfterBytes = 16};
 
         void throwInvalidUsageException(const stringstream &) const;
         void throwCommandException(const stringstream &) const;
@@ -123,15 +123,15 @@
         static string alStateString(uint8_t);
 
     private:
-		string name;
+        string name;
         string briefDesc;
         Verbosity verbosity;
         int alias;
         int position;
-		int domain;
-		string dataType;
-		bool force;
-		string outputFile;
+        int domain;
+        string dataType;
+        bool force;
+        string outputFile;
 
         Command();
 };