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
committed by Thomas Krijnen
parent b6f2fdef77
commit 10aca77de4
8 changed files with 205 additions and 116 deletions
+15
View File
@@ -0,0 +1,15 @@
#include "ParseIfcFile.h"
#include "../ifcparse/Ifc2x3.h"
#define IfcSchema Ifc2x3
#include "../ifcgeom/IfcGeom.h"
ParseIfcFile::ParseIfcFile() {}
ParseIfcFile::~ParseIfcFile() {}
void ParseIfcFile::Parse(const std::string& filePath)
{
//IfcParse::IfcFile ifcFile(filePath);
}