Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
move some content out of parsing to the classes
[simgrid.git] / src / kernel / routing / AsFull.hpp
index bf7668b..0bd7571 100644 (file)
@@ -9,13 +9,13 @@
 #include "src/kernel/routing/AsRoutedGraph.hpp"
 
 namespace simgrid {
+namespace kernel {
 namespace routing {
 
 /** Full routing: fast, large memory requirements, fully expressive */
 class XBT_PRIVATE AsFull: public AsRoutedGraph {
 public:
-
-  explicit AsFull(const char*name);
+  explicit AsFull(As* father, const char* name);
   void seal() override;
   ~AsFull() override;
 
@@ -25,7 +25,6 @@ public:
   sg_platf_route_cbarg_t *routingTable_ = nullptr;
 };
 
-}
-}
+}}} // namespaces
 
 #endif /* SIMGRID_ROUTING_FULL_HPP_ */