Work on python wrapper

This commit is contained in:
Thomas Krijnen
2017-12-31 12:20:13 +01:00
parent 05e6f56911
commit e2f79ec1ba
12 changed files with 94 additions and 72 deletions
+1 -1
View File
@@ -3,7 +3,7 @@
#include <map>
bool IfcParse::declaration::is(const std::string& name) const {
if (name_ == name) return true;
if (name_lower_ == boost::to_lower_copy(name)) return true;
if (this->as_entity()) {
return this->as_entity()->is(name);