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