17 lines
276 B
C++
17 lines
276 B
C++
#ifndef CONFIGFILES_H
|
|
#define CONFIGFILES_H
|
|
|
|
#include <QObject>
|
|
|
|
class ConfigFiles : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit ConfigFiles(QObject *parent = nullptr);
|
|
QList<QStringList> ReadFile_Csv(const QString &filePath);
|
|
signals:
|
|
|
|
};
|
|
|
|
#endif // CONFIGFILES_H
|