diff -r c55ebaa206f8 -r 11ec009e145d tool/Command.h --- a/tool/Command.h Mon Jan 19 10:17:21 2009 +0000 +++ b/tool/Command.h Mon Jan 19 10:18:41 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