17 lines
210 B
C
17 lines
210 B
C
|
|
#ifndef COMPONENTS_H
|
||
|
|
#define COMPONENTS_H
|
||
|
|
|
||
|
|
#include <QObject>
|
||
|
|
|
||
|
|
class Components : public QObject
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
public:
|
||
|
|
explicit Components(QObject *parent = nullptr);
|
||
|
|
|
||
|
|
signals:
|
||
|
|
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // COMPONENTS_H
|