14 lines
138 B
C++
14 lines
138 B
C++
#ifndef OBJECT_HH
|
|
#define OBJECT_HH
|
|
|
|
#include <QObject>
|
|
|
|
class Object_hh : public QObject
|
|
{
|
|
Q_OBJECT
|
|
Q_SLOT
|
|
void go(){};
|
|
};
|
|
|
|
#endif
|