Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
don't give the properties to the Link constructor either
[simgrid.git] / src / surf / surf_interface.hpp
index daf878b..42f4c85 100644 (file)
@@ -383,14 +383,6 @@ namespace surf {
  */
 XBT_PUBLIC_CLASS Resource {
 public:
-  /**
-   * @brief Constructor of non-LMM Resources
-   *
-   * @param model Model associated to this Resource
-   * @param name The name of the Resource
-   */
-  Resource(Model *model, const char *name);
-
   /**
    * @brief Constructor of LMM Resources
    *
@@ -431,7 +423,7 @@ public:
   virtual void turnOff();
 
 private:
-  const char *name_;
+  char* name_;
   Model *model_;
   bool isOn_ = true;
 
@@ -439,7 +431,7 @@ public: /* LMM */
   /** @brief Get the lmm constraint associated to this Resource if it is part of a LMM component (or null if none) */
   lmm_constraint_t getConstraint() const;
 protected:
-  lmm_constraint_t constraint_ = nullptr;
+  const lmm_constraint_t constraint_ = nullptr;
 };
 
 }