X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b87fc0829538ec066fd077e6c30ee6270b8abd78..9bfc714f74d8044a224b5c94ad3f69e540361841:/src/surf/PropertyHolder.cpp diff --git a/src/surf/PropertyHolder.cpp b/src/surf/PropertyHolder.cpp index e7657a277d..853bcb5522 100644 --- a/src/surf/PropertyHolder.cpp +++ b/src/surf/PropertyHolder.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2015-2017. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2015-2018. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -13,7 +13,8 @@ PropertyHolder::~PropertyHolder() { } /** @brief Return the property associated to the provided key (or nullptr if not existing) */ -const char *PropertyHolder::getProperty(const char*key) { +const char* PropertyHolder::get_property(std::string key) +{ if (properties_ == nullptr) return nullptr; auto prop = properties_->find(key); @@ -21,18 +22,18 @@ const char *PropertyHolder::getProperty(const char*key) { } /** @brief Change the value of a given key in the property set */ -void PropertyHolder::setProperty(std::string key, std::string value) +void PropertyHolder::set_property(std::string key, std::string value) { if (not properties_) - properties_ = new std::map; + properties_ = new std::unordered_map; (*properties_)[key] = value; } /** @brief Return the whole set of properties. Don't mess with it, dude! */ -std::map* PropertyHolder::getProperties() +std::unordered_map* PropertyHolder::get_properties() { if (not properties_) - properties_ = new std::map; + properties_ = new std::unordered_map; return properties_; }