summaryrefslogtreecommitdiffstats
path: root/Tests/QtAutogen/mocDepends/test2.hpp
blob: 0125f07b82851b6aa9cc64dacaa1f6c276c78c07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef TEST2_HPP
#define TEST2_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