Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
make As->father_ protected
[simgrid.git] / src / kernel / routing / AsImpl.cpp
index c6ab319..e4eb103 100644 (file)
@@ -14,11 +14,14 @@ namespace simgrid {
   namespace kernel {
   namespace routing {
 
-    AsImpl::AsImpl(const char *name) : As(name) { }
-    AsImpl::~AsImpl() = default;
-
-    xbt_dynar_t AsImpl::getOneLinkRoutes() {
-      return nullptr;
+  AsImpl::AsImpl(As* father, const char* name) : As(father, name)
+  {
+  }
+  AsImpl::~AsImpl() = default;
+
+  xbt_dynar_t AsImpl::getOneLinkRoutes()
+  {
+    return nullptr;
     }
 
     /** @brief Get the common ancestor and its first childs in each line leading to src and dst */