The Gaudi Framework  master (adcf1ca6)
Loading...
Searching...
No Matches
ParsersStandardMiscCommon.h File Reference
#include <Gaudi/Parsers/CommonParsers.h>
#include <Gaudi/Parsers/Factory.h>
#include <GaudiKernel/StatusCode.h>
#include <GaudiKernel/StringKey.h>
#include <map>
#include <set>
#include <string>
#include <string_view>
#include <vector>
Include dependency graph for ParsersStandardMiscCommon.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define PARSERS_DEF_FOR_STRMAP(ValueType)
 

Macro Definition Documentation

◆ PARSERS_DEF_FOR_STRMAP

#define PARSERS_DEF_FOR_STRMAP ( ValueType)
Value:
StatusCode Gaudi::Parsers::parse( std::map<std::string, ValueType>& result, std::string_view input ) { \
return Gaudi::Parsers::parse_( result, input ); \
} \
StatusCode Gaudi::Parsers::parse( std::map<std::string, ValueType, std::less<>>& result, std::string_view input ) { \
return Gaudi::Parsers::parse_( result, input ); \
}
This class is used for returning status codes from appropriate routines.
Definition StatusCode.h:64
StatusCode parse(GaudiUtils::HashMap< K, V > &result, std::string_view input)
Basic parser for the types of HashMap used in DODBasicMapper.
StatusCode parse_(ResultT &result, std::string_view input)
Definition Factory.h:22

Definition at line 23 of file ParsersStandardMiscCommon.h.

23#define PARSERS_DEF_FOR_STRMAP( ValueType ) \
24 StatusCode Gaudi::Parsers::parse( std::map<std::string, ValueType>& result, std::string_view input ) { \
25 return Gaudi::Parsers::parse_( result, input ); \
26 } \
27 StatusCode Gaudi::Parsers::parse( std::map<std::string, ValueType, std::less<>>& result, std::string_view input ) { \
28 return Gaudi::Parsers::parse_( result, input ); \
29 }