mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-18 19:30:25 +00:00
Added output panel (for debug info, etc.)
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user