Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[surf] new (abstract) class: PropertyHolder, with only one purpose
[simgrid.git] / src / surf / PropertyHolder.hpp
1 /* Copyright (c) 2015. The SimGrid Team. All rights reserved.               */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef SRC_SURF_PROPERTYHOLDER_HPP_
7 #define SRC_SURF_PROPERTYHOLDER_HPP_
8 #include <xbt/dict.h>
9
10 namespace simgrid {
11 namespace surf {
12
13 /** @brief a PropertyHolder can be given a set of textual properties
14  *
15  * Common PropertyHolders are elements of the platform file, such as Host, Link or Storage.
16  */
17 class PropertyHolder { // DO NOT DERIVE THIS CLASS, or the diamond inheritance mayhem will get you
18
19 public:
20         PropertyHolder(xbt_dict_t props);
21         ~PropertyHolder();
22
23         const char *getProperty(const char*id);
24         void setProperty(const char*id, const char*value);
25         xbt_dict_t getProperties();
26 private:
27         xbt_dict_t p_properties = NULL;
28 };
29
30 } /* namespace surf */
31 } /* namespace simgrid */
32
33 #endif /* SRC_SURF_PROPERTYHOLDER_HPP_ */