Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines for 2022.
[simgrid.git] / include / xbt / PropertyHolder.hpp
index 763fd29..d30beae 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2015-2019. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2015-2022. 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. */
@@ -15,9 +15,10 @@ namespace xbt {
 
 /** @brief a PropertyHolder can be given a set of textual properties
  *
- * Common PropertyHolders are elements of the platform file, such as Host, Link or Storage.
+ * Common PropertyHolders are elements of the platform file, such as Host, Link, or Disk.
  */
 class PropertyHolder { // DO NOT DERIVE THIS CLASS, or the diamond inheritance mayhem will get you
+  std::unique_ptr<std::unordered_map<std::string, std::string>> properties_ = nullptr;
 
 public:
   PropertyHolder()                      = default;
@@ -29,9 +30,6 @@ public:
 
   const std::unordered_map<std::string, std::string>* get_properties();
   template <class Assoc> void set_properties(const Assoc& properties);
-
-private:
-  std::unique_ptr<std::unordered_map<std::string, std::string>> properties_ = nullptr;
 };
 
 } // namespace xbt