mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-30 02:59:22 -05:00
15 lines
148 B
Plaintext
15 lines
148 B
Plaintext
#ifndef OBJECT_HPP
|
|
#define OBJECT_HPP
|
|
|
|
#include <QObject>
|
|
|
|
class Object : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
Q_SLOT
|
|
void aSlot(){};
|
|
};
|
|
|
|
#endif
|