mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-14 19:34:34 +00:00
18 lines
266 B
C++
18 lines
266 B
C++
#ifndef PARSEIFCFILE_H
|
|
#define PARSEIFCFILE_H
|
|
|
|
#include <QObject>
|
|
#include <QString>
|
|
#include <string>
|
|
|
|
class ParseIfcFile : public QObject
|
|
{
|
|
public:
|
|
ParseIfcFile();
|
|
~ParseIfcFile();
|
|
|
|
void Parse(const std::string& filePath);
|
|
};
|
|
|
|
#endif // PARSEIFCFILE_H
|