diff options
Diffstat (limited to 'tests/hawd/modules/check.h')
-rw-r--r-- | tests/hawd/modules/check.h | 11 |
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 | { |
29 | public: | 29 | public: |
30 | Check(); | 30 | Check(); |
31 | static void checkFile(const QString &name, State &state); | ||
32 | |||
33 | private: | ||
34 | static bool check(const QStringList &commands, State &state); | ||
35 | }; | ||
36 | |||
37 | class CheckAll : public Module | ||
38 | { | ||
39 | public: | ||
40 | CheckAll(); | ||
31 | 41 | ||
32 | private: | 42 | private: |
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 |