| 166 | } |
| 167 | |
| 168 | std::vector<std::string> IFaceTable::GetAllPropertyNames() const { |
| 169 | std::vector<std::string> kws; |
| 170 | |
| 171 | kws.reserve(properties.size()); |
| 172 | std::transform(properties.begin(), properties.end(), std::back_inserter(kws), [](const IFaceProperty &ifp) { return ifp.name; }); |
| 173 | |
| 174 | return kws; |
| 175 | } |