cmake/Tests/QtAutogen/MocDepends/testGenLib.hpp
2018-04-23 21:13:27 +02:00

17 lines
221 B
C++

#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