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