The Gaudi Framework  v30r4 (9b837755)
InputData.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <string>
4 
5 namespace Gaudi
6 {
7  namespace Parsers
8  {
11  InputData( const std::string& s ) : std::string{s} {}
12  using std::string::string;
13  using std::string::operator=;
14  };
15  }
16 }
STL namespace.
STL class.
Helper class to enable ADL for parsers.
Definition: InputData.h:10
string s
Definition: gaudirun.py:253
Helper functions to set/get the application return code.
Definition: __init__.py:1
InputData(const std::string &s)
Definition: InputData.h:11