19 lines
358 B
C++
19 lines
358 B
C++
#ifndef CONFIGFILES_H
|
|
#define CONFIGFILES_H
|
|
|
|
#include <QObject>
|
|
#include <GlobalDefinitions/Variable.h>
|
|
class ConfigFiles : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit ConfigFiles(QObject *parent = nullptr);
|
|
QList<QStringList> ReadFile_Csv(const QString &filePath);
|
|
|
|
static tsServerAddr ReadServerAddr();
|
|
signals:
|
|
|
|
};
|
|
|
|
#endif // CONFIGFILES_H
|