summaryrefslogtreecommitdiffstats
path: root/Tests/QtAutogen/resourcetester.h
blob: b02cb4ed27ff588c3fc3093421286cb1d797e364 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

#ifndef RESOURCE_TESTER_H
#define RESOURCE_TESTER_H

#include <QObject>

class ResourceTester : public QObject
{
  Q_OBJECT
public:
  explicit ResourceTester(QObject *parent = 0);

private slots:
  void doTest();
};

#endif