ssu
sandboxtest.h
Go to the documentation of this file.
1 
8 #ifndef _SANDBOXTEST_H
9 #define _SANDBOXTEST_H
10 
11 #include <QObject>
12 
13 class SandboxTest: public QObject
14 {
15  Q_OBJECT
16 
17 private slots:
18  void test();
19 
20 private:
21  static QString readAll(const QString &fileName);
22 };
23 
24 #endif
SandboxTest
Definition: sandboxtest.h:13