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

#include "simpleLib.hpp"
#include <QObject>

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

#endif