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