14 lines
133 B
C++
14 lines
133 B
C++
#ifndef Object_HPP
|
|
#define Object_HPP
|
|
|
|
#include <QObject>
|
|
|
|
class Object : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
Object();
|
|
};
|
|
|
|
#endif
|