X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a7062f3c8933c30e8ef660499389d11e0c7bac3b..63c22347e854ce1cd31b509002df101876034c3e:/src/smpi/smpi_info.hpp diff --git a/src/smpi/smpi_info.hpp b/src/smpi/smpi_info.hpp index 8e1f52555c..5555fe36a9 100644 --- a/src/smpi/smpi_info.hpp +++ b/src/smpi/smpi_info.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2009-2010, 2012-2014. The SimGrid Team. +/* Copyright (c) 2009-2010, 2012-2017. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -19,12 +19,10 @@ class Info : public F2C{ xbt_dict_t dict_; int refcount_; public: - static MPI_Info null_id_; - - Info(); - Info(Info* orig); + explicit Info(); + explicit Info(Info* orig); ~Info(); - static void ref(MPI_Info info); + void ref(); static void unref(MPI_Info info); void set(char *key, char *value); int get(char *key,int valuelen, char *value, int *flag); @@ -32,6 +30,7 @@ class Info : public F2C{ int get_nkeys(int *nkeys); int get_nthkey(int n, char *key); int get_valuelen(char *key, int *valuelen, int *flag); + static Info* f2c(int id); }; }