You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
388 B
C++

#ifndef CDCP_H
#define CDCP_H
#include <QObject>
#include <QMetaObject>
#include <QList>
class cDCP : public QObject
{
Q_OBJECT
public:
explicit cDCP(QObject *parent = nullptr);
signals:
public slots:
private:
};
Q_DECLARE_METATYPE(cDCP*)
class cDCPList : public QList<cDCP*>
{
public:
void load(const QString& fileName);
private:
QString m_fileName;
};
#endif // CDCP_H