Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Implement I/O as asynchronous activities
[simgrid.git] / src / surf / PropertyHolder.hpp
index 0dfe679..37a30ef 100644 (file)
@@ -1,12 +1,12 @@
-/* Copyright (c) 2015. 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. */
 
 #ifndef SRC_SURF_PROPERTYHOLDER_HPP_
 #define SRC_SURF_PROPERTYHOLDER_HPP_
-#include <map>
 #include <string>
+#include <unordered_map>
 
 namespace simgrid {
 namespace surf {
@@ -21,16 +21,16 @@ public:
   PropertyHolder() = default;
   ~PropertyHolder();
 
-  const char *getProperty(const char*id);
-  void setProperty(std::string id, std::string value);
+  const char* get_property(std::string key);
+  void set_property(std::string id, std::string value);
 
-  /* FIXME: This should not be exposed, as users may do bad things with the dict they got (it's not a copy).
+  /* FIXME: This should not be exposed, as users may do bad things with the map they got (it's not a copy).
    * But some user API expose this call so removing it is not so easy.
    */
-  std::map<std::string, std::string>* getProperties();
+  std::unordered_map<std::string, std::string>* get_properties();
 
 private:
-  std::map<std::string, std::string>* properties_ = nullptr;
+  std::unordered_map<std::string, std::string>* properties_ = nullptr;
 };
 
 } /* namespace surf */