X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5a4bab52900d62dfd3dec063ece907974899db09..ace6ec5d4b81b85275732c9ba244d358ddc30107:/include/xbt/PropertyHolder.hpp diff --git a/include/xbt/PropertyHolder.hpp b/include/xbt/PropertyHolder.hpp index 763fd29a84..623a35a5f6 100644 --- a/include/xbt/PropertyHolder.hpp +++ b/include/xbt/PropertyHolder.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2015-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2015-2023. 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. */ @@ -10,14 +10,14 @@ #include #include -namespace simgrid { -namespace xbt { +namespace simgrid::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> properties_ = nullptr; public: PropertyHolder() = default; @@ -29,12 +29,8 @@ public: const std::unordered_map* get_properties(); template void set_properties(const Assoc& properties); - -private: - std::unique_ptr> properties_ = nullptr; }; -} // namespace xbt -} // namespace simgrid +} // namespace simgrid::xbt #endif