Files
IfcOpenShell/src/qtviewer/ParseIfcFile.h
T

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

18 lines
266 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
{
public:
ParseIfcFile();
~ParseIfcFile();
void Parse(const std::string& filePath);
};
#endif // PARSEIFCFILE_H