Params.hh 324 Bytes
Newer Older
1
2
3
4
5
6
7
#pragma once

#include <map>

class Params : public std::map<std::string, std::string> {
  public:
    Params() : std::map<std::string, std::string>() {};
garciay's avatar
garciay committed
8
    Params(const Params& p_params);
9
10
11
12
13
    virtual ~Params() {};
    void log();
    static void convert(Params& p_param, const std::string p_parameters);
};