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