summaryrefslogtreecommitdiffstats
path: root/Tests/QtAutogen/AutogenOriginDependsOn/simpleLib.hpp.in
blob: b65b0cb4a5d5246aa8356eafc605cb87fcd3ded4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef SIMPLE_LIB_H
#define SIMPLE_LIB_H

#include <QObject>

class SimpleLib : public QObject
{
  Q_OBJECT
public:
  SimpleLib();
  ~SimpleLib();
};

#endif