Added output panel (for debug info, etc.)

This commit is contained in:
Dushyant Basson
2023-08-29 09:48:27 +05:30
parent 98102b9df0
commit 14454d1b78
4 changed files with 75 additions and 6 deletions
+11 -1
View File
@@ -1,10 +1,20 @@
#ifndef PARSEIFCFILE_H
#define PARSEIFCFILE_H
#include <QObject>
#include <QString>
#include <string>
class ParseIfcFile
class ParseIfcFile : public QObject
{
Q_OBJECT
signals:
void parsingInfo(const QString& info);
private:
void outputMsg(const std::string& msg);
public:
ParseIfcFile();
~ParseIfcFile();