1#ifndef DUNE_COPASI_PARSER_FACTORY_HH
2#define DUNE_COPASI_PARSER_FACTORY_HH
7#include <unordered_map>
22inline const static std::unordered_map<ParserType, std::string_view> parser2string = {
30inline const static std::unordered_map<std::string_view, ParserType> string2parser = {
38inline const static std::string default_parser_str =
41[[nodiscard]] std::unique_ptr<Parser>
44[[nodiscard]] std::unique_ptr<Parser>
Definition: axis_names.hh:7
const ParserType default_parser
std::unique_ptr< Parser > make_parser(ParserType parser_type=default_parser)
ParserType
Definition: factory.hh:12