blob: 408335bd258df864ef4c6f4c5eddb95da4d24b97 [file] [log] [blame]
#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