inline std::vector<std::string> rpGroup::getPropertyNamesVector() const { std::vector<std::string> ret; ret.push_back("ObjectIdList"); ret.push_back("Permanent"); for (std::map<std::string, reposit::property_t>::const_iterator i = userProperties.begin(); i != userProperties.end(); ++i) ret.push_back(i->first); return ret; }
inline std::vector<std::string> ohRange::getPropertyNamesVector() const { std::vector<std::string> ret; ret.push_back("Values"); ret.push_back("Permanent"); for (std::map<std::string, ObjectHandler::property_t>::const_iterator i = userProperties.begin(); i != userProperties.end(); ++i) ret.push_back(i->first); return ret; }