15 lines
141 B
C++
15 lines
141 B
C++
|
#ifndef ROBJC_HPP
|
||
|
#define ROBJC_HPP
|
||
|
|
||
|
#include <QObject>
|
||
|
|
||
|
class RObjC : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
RObjC();
|
||
|
~RObjC();
|
||
|
};
|
||
|
|
||
|
#endif
|