summaryrefslogtreecommitdiffstats
path: root/Tests/QtAutogen/AutogenOriginDependsOn/testGenLib.hpp
blob: 55457d2128318ede527274a763d89b26afab77a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef TEST3_HPP
#define TEST3_HPP

#include <QObject>

#include "simpleLib.hpp"

// This object triggers the AUTOMOC on this file
class LObject : public QObject
{
  Q_OBJECT
public:
  Q_SLOT
  void aSlot(){};
};

#endif