mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-12 17:19:05 -05:00
14 lines
141 B
C++
14 lines
141 B
C++
#ifndef OBJECT_HPP
|
|
#define OBJECT_HPP
|
|
|
|
#include <QObject>
|
|
|
|
class Object_hpp : public QObject
|
|
{
|
|
Q_OBJECT
|
|
Q_SLOT
|
|
void go(){};
|
|
};
|
|
|
|
#endif
|