Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove features marked with DEPRECATED_v323.
[simgrid.git] / include / simgrid / jedule / jedule_events.hpp
index 3c853e3..a3d4326 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2010-2018. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2010-2019. 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. */
@@ -19,28 +19,15 @@ namespace jedule{
 
 class XBT_PUBLIC Event {
 public:
-  Event(std::string name, double start_time, double end_time, std::string type);
+  Event(const std::string& name, double start_time, double end_time, const std::string& type);
+  Event(const Event&) = delete;
+  Event& operator=(const Event&) = delete;
   ~Event();
   void add_characteristic(char* characteristic);
   void add_resources(std::vector<sg_host_t>* 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<sg_host_t>* 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_;