Files
IfcOpenShell/src/qtviewer/ParseIfcFile.h
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
386 B
C++
Raw Normal View History

#ifndef PARSEIFCFILE_H
#define PARSEIFCFILE_H
2023-08-29 09:48:27 +05:30
#include <QObject>
#include <QString>
#include <string>
2023-08-29 09:48:27 +05:30
class ParseIfcFile : public QObject
{
2023-08-29 09:48:27 +05:30
Q_OBJECT
signals:
void parsingInfo(const QString& info);
private:
void outputMsg(const std::string& msg);
public:
ParseIfcFile();
~ParseIfcFile();
void Parse(const std::string& filePath);
};
#endif // PARSEIFCFILE_H