summaryrefslogtreecommitdiffstats
path: root/tests/hawd/modules/check.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/hawd/modules/check.h')
-rw-r--r--tests/hawd/modules/check.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/tests/hawd/modules/check.h b/tests/hawd/modules/check.h
index 035f45a..44721f4 100644
--- a/tests/hawd/modules/check.h
+++ b/tests/hawd/modules/check.h
@@ -28,10 +28,19 @@ class Check : public Module
28{ 28{
29public: 29public:
30 Check(); 30 Check();
31 static void checkFile(const QString &name, State &state);
32
33private:
34 static bool check(const QStringList &commands, State &state);
35};
36
37class CheckAll : public Module
38{
39public:
40 CheckAll();
31 41
32private: 42private:
33 static bool check(const QStringList &commands, State &state); 43 static bool check(const QStringList &commands, State &state);
34 static void checkFile(const QString &name, State &state);
35}; 44};
36 45
37} // namespace HAWD 46} // namespace HAWD