changed serial reading from lowlevel to boost with hope for more stability, changed a lot of smart pointers to unique_ptr, added fmt for logging

This commit is contained in:
2019-01-06 14:57:27 +01:00
parent bc27278ffb
commit 58f44dc957
21 changed files with 281 additions and 173 deletions

View File

@@ -19,14 +19,13 @@ class Evaluation : public QWidget {
Q_OBJECT
public:
explicit Evaluation(std::shared_ptr<DataBase> db,
QWidget * parent = nullptr);
explicit Evaluation(DataBase * db, QWidget * parent = nullptr);
~Evaluation();
private:
Ui::Evaluation * ui;
std::shared_ptr<Result> interfaceResult;
std::shared_ptr<DataBase> db;
DataBase * db;
vector<vector<QString>> result;
public slots: