Loading [MathJax]/extensions/tex2jax.js
The Gaudi Framework  v31r0 (aeb156f0)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
InputData.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <string>
4 
5 namespace Gaudi {
6  namespace Parsers {
8  struct InputData : std::string {
9  InputData( const std::string& s ) : std::string{s} {}
10  using std::string::string;
11  using std::string::operator=;
12  };
13  } // namespace Parsers
14 } // namespace Gaudi
STL namespace.
STL class.
Helper class to enable ADL for parsers.
Definition: InputData.h:8
string s
Definition: gaudirun.py:312
Helper functions to set/get the application return code.
Definition: __init__.py:1
InputData(const std::string &s)
Definition: InputData.h:9