Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove extern "C" from cpp files.
[simgrid.git] / src / s4u / s4u_netzone.cpp
index b526fbf..930acfe 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2006-2017. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2006-2018. 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. */
@@ -114,7 +114,7 @@ void NetZone::addRoute(sg_netpoint_t /*src*/, sg_netpoint_t /*dst*/, sg_netpoint
 } // namespace simgrid
 
 /* **************************** Public C interface *************************** */
-SG_BEGIN_DECL()
+
 sg_netzone_t sg_zone_get_root()
 {
   return simgrid::s4u::Engine::getInstance()->getNetRoot();
@@ -155,23 +155,3 @@ void sg_zone_get_hosts(sg_netzone_t netzone, xbt_dynar_t whereto)
   for (auto const& host : hosts)
     xbt_dynar_push(whereto, &host);
 }
-
-/* ************************** Backward ABI compatibility *************************** */
-sg_netzone_t MSG_zone_get_root() __attribute__((alias("sg_zone_get_root")));
-;
-const char* MSG_zone_get_name(sg_netzone_t zone) __attribute__((alias("sg_zone_get_name")));
-;
-sg_netzone_t MSG_zone_get_by_name(const char* name) __attribute__((alias("sg_zone_get_by_name")));
-;
-void MSG_zone_get_sons(sg_netzone_t zone, xbt_dict_t whereto) __attribute__((alias("sg_zone_get_sons")));
-;
-const char* MSG_zone_get_property_value(sg_netzone_t zone, const char* name)
-    __attribute__((alias("sg_zone_get_property_value")));
-;
-void MSG_zone_set_property_value(sg_netzone_t zone, const char* name, char* value)
-    __attribute__((alias("sg_zone_set_property_value")));
-;
-void MSG_zone_get_hosts(sg_netzone_t zone, xbt_dynar_t whereto) __attribute__((alias("sg_zone_get_hosts")));
-;
-
-SG_END_DECL()