X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7cd237f9659b2df47fca65a4340ca7b5407f46a0..c07b0d9b6750434a97220b7819c0f72bfc8d4e98:/src/smpi/include/smpi_info.hpp diff --git a/src/smpi/include/smpi_info.hpp b/src/smpi/include/smpi_info.hpp index 9799a973dd..99664b56e1 100644 --- a/src/smpi/include/smpi_info.hpp +++ b/src/smpi/include/smpi_info.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2009-2019. The SimGrid Team. +/* Copyright (c) 2009-2020. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -26,11 +26,11 @@ public: void ref(); static void unref(MPI_Info info); void set(const char* key, const char* value) { map_[key] = value; } - int get(const char* key, int valuelen, char* value, int* flag); + int get(const char* key, int valuelen, char* value, int* flag) const; int remove(const char* key); - int get_nkeys(int* nkeys); - int get_nthkey(int n, char* key); - int get_valuelen(const char* key, int* valuelen, int* flag); + int get_nkeys(int* nkeys) const; + int get_nthkey(int n, char* key) const; + int get_valuelen(const char* key, int* valuelen, int* flag) const; static Info* f2c(int id); };