Rename some files with more sensical names

This commit is contained in:
Thomas Krijnen
2021-11-05 16:54:16 +01:00
parent c203b78d34
commit ab50609854
24 changed files with 59 additions and 59 deletions
+18
View File
@@ -0,0 +1,18 @@
#include "mapping_undefine.i"
#define SHAPES(T) \
if (l->as<IfcSchema::T>()) { \
try { \
return convert(l->as<IfcSchema::T>(), r); \
} catch (const std::exception& e) { \
Logger::Message(Logger::LOG_ERROR, std::string(e.what()) + "\nFailed to convert:", l); \
} catch (const Standard_Failure& f) { \
if (f.GetMessageString()) \
Logger::Message(Logger::LOG_ERROR, std::string("Error in: ") + f.GetMessageString() + "\nFailed to convert:", l); \
else \
Logger::Message(Logger::LOG_ERROR, "Failed to convert:", l); \
} \
return false; \
}
#include "mapping_define_missing.i"
#include "mapping.i"