Пример #1
0
 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;
 }
Пример #2
0
 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;
 }