tool/Command.h
changeset 1335 09c6fce1ae45
parent 1166 006244d53f68
child 1363 11c0b2caa253
--- a/tool/Command.h	Mon Jan 26 11:59:32 2009 +0000
+++ b/tool/Command.h	Mon Jan 26 13:01:58 2009 +0000
@@ -70,6 +70,8 @@
         const string &getDataType() 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;
@@ -106,6 +108,7 @@
 		int domain;
 		string dataType;
 		bool force;
+		string outputFile;
 
         Command();
 };
@@ -168,4 +171,11 @@
 
 /****************************************************************************/
 
+inline const string &Command::getOutputFile() const
+{
+    return outputFile;
+}
+
+/****************************************************************************/
+
 #endif