Files
IfcOpenShell/src/qtviewer/ParseIfcFile.h
T

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