X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b8df87e176f27b25534f27d7e240defa32ca35bc..c6b00dcbdd4cd07fddcdd8c31762a33d247257cf:/src/surf/network_smpi.hpp diff --git a/src/surf/network_smpi.hpp b/src/surf/network_smpi.hpp index e92f7848d3..56d4d60ddf 100644 --- a/src/surf/network_smpi.hpp +++ b/src/surf/network_smpi.hpp @@ -1,9 +1,12 @@ -/* Copyright (c) 2013-2019. The SimGrid Team. +/* Copyright (c) 2013-2020. 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 SIMGRID_SURF_NETWORK_SMPI_HPP +#define SIMGRID_SURF_NETWORK_SMPI_HPP + #include #include "network_cm02.hpp" @@ -15,7 +18,7 @@ namespace resource { class XBT_PRIVATE NetworkSmpiModel : public NetworkCm02Model { public: NetworkSmpiModel(); - ~NetworkSmpiModel(); + ~NetworkSmpiModel() = default; double get_latency_factor(double size); double get_bandwidth_factor(double size); @@ -24,3 +27,5 @@ public: } // namespace resource } // namespace kernel } + +#endif