#include <Gaudi/Parsers/CommonParsers.h>
#include <Gaudi/Parsers/Factory.h>
#include <string>
#include <string_view>
Go to the source code of this file.
◆ PARSERS_DEF_FOR_SINGLE
#define PARSERS_DEF_FOR_SINGLE |
( |
| Type | ) |
|
Value:
}
This class is used for returning status codes from appropriate routines.
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)
@fixme workaround for a warning in a Boost spirit header
include/boost/spirit/.../real_impl.hpp:337:45: warning: 'n' may be used uninitialized [-Wmaybe-uninitialized]
337 | traits::assign_to(traits::negate(neg, n), attr);
| ~~~~~~~~~~~~~~^~~~~~~~
Definition at line 26 of file ParsersStandardSingle.cpp.
26#define PARSERS_DEF_FOR_SINGLE( Type ) \
27 StatusCode Gaudi::Parsers::parse( Type& result, std::string_view input ) { \
28 return Gaudi::Parsers::parse_( result, input ); \
29 }