18 lines
222 B
C++
Raw Normal View History

2017-09-21 19:03:52 +02:00
#ifndef TEST3_HPP
#define TEST3_HPP
2017-07-20 19:35:53 +02:00
#include <QObject>
2020-02-01 23:06:01 +01:00
#include "simpleLib.hpp"
2017-07-20 19:35:53 +02:00
// This object triggers the AUTOMOC on this file
class LObject : public QObject
{
Q_OBJECT
public:
Q_SLOT
void aSlot(){};
};
#endif