aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/qbs/parser/command.h
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@digia.com>2012-12-06 14:52:24 +0100
committerJoerg Bornemann <joerg.bornemann@digia.com>2012-12-06 16:56:21 +0100
commita78618196cf001d81078707a634f3a12a11525f5 (patch)
treea824fc31915eb99c4009882813fdb636350f33aa /src/app/qbs/parser/command.h
parentba803d39859a7cac2ea499770f0e7d1902a5fc30 (diff)
Make it possible to mark the build artifacts as up to date ...
... without doing a build. Task-number: QBS-114 Change-Id: Idf8b2290310b491860575ae25344290d63756f2a Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'src/app/qbs/parser/command.h')
-rw-r--r--src/app/qbs/parser/command.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/app/qbs/parser/command.h b/src/app/qbs/parser/command.h
index b95f66537..e073a0294 100644
--- a/src/app/qbs/parser/command.h
+++ b/src/app/qbs/parser/command.h
@@ -152,6 +152,19 @@ private:
QList<CommandLineOption::Type> supportedOptions() const;
};
+class UpdateTimestampsCommand : public Command
+{
+public:
+ UpdateTimestampsCommand(CommandLineOptionPool &optionPool) : Command(optionPool) {}
+
+private:
+ CommandType type() const { return UpdateTimestampsCommandType; }
+ QString shortDescription() const;
+ QString longDescription() const;
+ QString representation() const;
+ QList<CommandLineOption::Type> supportedOptions() const;
+};
+
class HelpCommand : public Command
{
public: