We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80e1663 commit 285d40dCopy full SHA for 285d40d
1 file changed
src/ifcwrap/IfcParseWrapper.i
@@ -90,6 +90,12 @@ static IfcUtil::ArgumentType helper_fn_attribute_type(const IfcUtil::IfcBaseClas
90
f << (*$self);
91
}
92
93
+ std::string to_string() {
94
+ std::stringstream s;
95
+ s << (*$self);
96
+ return s.str();
97
+ }
98
+
99
std::vector<unsigned> entity_names() const {
100
std::vector<unsigned> keys;
101
keys.reserve(std::distance($self->begin(), $self->end()));
0 commit comments