Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[SMPI/LB] Add copyright header
[simgrid.git] / src / smpi / plugins / load_balancer / load_balancer.hpp
index 6bc4e72..cfdf483 100644 (file)
@@ -1,3 +1,7 @@
+/* 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. */
 
 #ifndef HAVE_SG_PLUGIN_LB
 #define HAVE_SG_PLUGIN_LB
@@ -8,7 +12,7 @@ namespace simgrid {
 namespace plugin {
 namespace loadbalancer {
 
-class Mapping {
+class XBT_PRIVATE Mapping {
 public:
   Mapping() = default;
   ~Mapping() = default;
@@ -52,7 +56,7 @@ public:
   }
 };
 
-class LoadBalancer
+class XBT_PRIVATE LoadBalancer
 {
   Mapping new_mapping;
   std::map</*proc id*/int, double> actor_computation;