Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Move the surf::As* classes into their own files
[simgrid.git] / src / surf / AsClusterTorus.hpp
similarity index 72%
rename from src/surf/surf_routing_cluster_torus.hpp
rename to src/surf/AsClusterTorus.hpp
index ecb674e..58f7478 100644 (file)
@@ -1,18 +1,12 @@
-/* Copyright (c) 2014-2015. The SimGrid Team.
- * All rights reserved.                                                     */
+/* Copyright (c) 2014-2016. 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. */
 
-
 #ifndef SURF_ROUTING_CLUSTER_TORUS_HPP_
 #define SURF_ROUTING_CLUSTER_TORUS_HPP_
 
-#include <xbt/base.h>
-
-#include "surf_routing_none.hpp"
-#include "network_interface.hpp"
-#include "surf_routing_cluster.hpp"
+#include "src/surf/AsCluster.hpp"
 
 namespace simgrid {
   namespace surf {
@@ -25,7 +19,7 @@ namespace simgrid {
       void getRouteAndLatency(NetCard * src, NetCard * dst, sg_platf_route_cbarg_t into, double *latency) override;
       void parse_specific_arguments(sg_platf_cluster_cbarg_t cluster) override;
     private:
-      xbt_dynar_t dimensions_ = NULL;
+      xbt_dynar_t dimensions_ = nullptr;
     };
 
   }}