Raw -> Smart Pointers for mupp, qt5/qt6.

This commit is contained in:
2023-10-24 12:55:26 +02:00
parent 3d149dc6ab
commit 51520868f1
9 changed files with 140 additions and 158 deletions

View File

@@ -30,6 +30,8 @@
#ifndef _PMUPP_H_
#define _PMUPP_H_
#include <memory>
#include <QObject>
#include <QString>
#include <QVector>
@@ -156,7 +158,7 @@ class PParamDataHandler : public QObject {
void newData();
private:
QProcess *fProc; ///< this will be needed if msr2data needs to be called
std::unique_ptr<QProcess> fProc; ///< this will be needed if msr2data needs to be called
QVector<PmuppCollection> fCollection; ///< all the collections handeled
bool analyzeFileList(const QStringList &fln, QString &collectionName,