X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b9625f82f86db0674e911887addce45dca31b57f..89d6f2594bd77b1d2a52ef35d296c461e9b7f9a8:/include/xbt/parse_units.hpp diff --git a/include/xbt/parse_units.hpp b/include/xbt/parse_units.hpp index 7350c241eb..c1e97f4baf 100644 --- a/include/xbt/parse_units.hpp +++ b/include/xbt/parse_units.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2020. The SimGrid Team. +/* Copyright (c) 2007-2021. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -7,17 +7,20 @@ #ifndef SIMGRID_XBT_PARSE_UNITS_HPP #define SIMGRID_XBT_PARSE_UNITS_HPP -double xbt_parse_get_time(const std::string& filename, int lineno, const char* string, const char* entity_kind, - const std::string& name); -double surf_parse_get_size(const std::string& filename, int lineno, const char* string, const char* entity_kind, - const std::string& name); -double xbt_parse_get_bandwidth(const std::string& filename, int lineno, const char* string, const char* entity_kind, - const std::string& name); -std::vector xbt_parse_get_bandwidths(const std::string& filename, int lineno, const char* string, - const char* entity_kind, const std::string& name); -double xbt_parse_get_speed(const std::string& filename, int lineno, const char* string, const char* entity_kind, - const std::string& name); -std::vector xbt_parse_get_all_speeds(const std::string& filename, int lineno, char* speeds, - const char* entity_kind, const std::string& id); +#include +#include + +double xbt_parse_get_time(const std::string& filename, int lineno, const std::string& string, + const std::string& entity_kind); +double xbt_parse_get_size(const std::string& filename, int lineno, const std::string& string, + const std::string& entity_kind); +double xbt_parse_get_bandwidth(const std::string& filename, int lineno, const std::string& string, + const std::string& entity_kind); +std::vector xbt_parse_get_bandwidths(const std::string& filename, int lineno, const std::string& string, + const std::string& entity_kind); +double xbt_parse_get_speed(const std::string& filename, int lineno, const std::string& string, + const std::string& entity_kind); +std::vector xbt_parse_get_all_speeds(const std::string& filename, int lineno, const std::string& speeds, + const std::string& entity_kind); #endif