X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d805d3e2b617db73c7c28cf4e4683cd9e6b928d4..dc63d290001cd127af79685f3cd811e03eebcece:/include/simgrid/jedule/jedule_events.hpp diff --git a/include/simgrid/jedule/jedule_events.hpp b/include/simgrid/jedule/jedule_events.hpp index 5ab0f8f108..54d00023a0 100644 --- a/include/simgrid/jedule/jedule_events.hpp +++ b/include/simgrid/jedule/jedule_events.hpp @@ -9,13 +9,11 @@ #include #include -#include #include #include #include -#if SIMGRID_HAVE_JEDULE namespace simgrid { namespace jedule{ @@ -23,11 +21,26 @@ class XBT_PUBLIC Event { public: Event(std::string name, double start_time, double end_time, std::string type); ~Event(); - void addCharacteristic(char* characteristic); - void addResources(std::vector* host_selection); - void addInfo(char* key, char* value); + void add_characteristic(char* characteristic); + void add_resources(std::vector* host_selection); + void add_info(char* key, char* value); void print(FILE* file); + // deprecated + XBT_ATTRIB_DEPRECATED_v323("Please use Event::add_characteristic()") void addCharacteristic(char* characteristic) + { + add_characteristic(characteristic); + } + XBT_ATTRIB_DEPRECATED_v323("Please use Event::add_resources()") void addResources( + std::vector* host_selection) + { + add_resources(host_selection); + } + XBT_ATTRIB_DEPRECATED_v323("Please use Event::add_info()") void addInfo(char* key, char* value) + { + add_info(key, value); + } + private: std::string name; double start_time; @@ -41,6 +54,5 @@ private: } typedef simgrid::jedule::Event* jed_event_t; -#endif #endif /* JEDULE_EVENTS_H_ */