diff -r 4151f6f4c3e1 -r 960cc1bb6b4a tool/Command.h --- a/tool/Command.h Tue Oct 09 09:52:50 2012 +0200 +++ b/tool/Command.h Wed Oct 24 18:21:52 2012 +0200 @@ -113,6 +113,9 @@ void setOutputFile(const string &); const string &getOutputFile() const; + void setSkin(const string &); + const string &getSkin() const; + bool matchesSubstr(const string &) const; bool matchesAbbrev(const string &) const; @@ -151,6 +154,7 @@ string dataType; bool force; string outputFile; + string skin; Command(); }; @@ -199,4 +203,11 @@ /****************************************************************************/ +inline const string &Command::getSkin() const +{ + return skin; +} + +/****************************************************************************/ + #endif