14 lines
135 B
C
14 lines
135 B
C
|
#ifndef OBJECT_H
|
||
|
#define OBJECT_H
|
||
|
|
||
|
#include <QObject>
|
||
|
|
||
|
class Object_h : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
Q_SLOT
|
||
|
void go(){};
|
||
|
};
|
||
|
|
||
|
#endif
|