Updated to use Qt6; Created initial structure of the viewer with OpenGL widget

This commit is contained in:
dushyant basson
2023-08-12 02:42:11 +05:30
parent 1878dedbd4
commit eefe821d0a
8 changed files with 205 additions and 116 deletions
+15
View File
@@ -0,0 +1,15 @@
#ifndef PARSEIFCFILE_H
#define PARSEIFCFILE_H
#include <string>
class ParseIfcFile
{
public:
ParseIfcFile();
~ParseIfcFile();
void Parse(const std::string& filePath);
};
#endif // PARSEIFCFILE_H