mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-26 08:29:54 -06:00
15 lines
148 B
C++
15 lines
148 B
C++
#ifndef OBJECT_HPP
|
|
#define OBJECT_HPP
|
|
|
|
#include <QObject>
|
|
|
|
class Object : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
Q_SLOT
|
|
void aSlot(){};
|
|
};
|
|
|
|
#endif
|