The Gaudi Framework  v32r2 (46d42edc)
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:318
Header file for std:chrono::duration-based Counters.
Definition: __init__.py:1
InputData(const std::string &s)
Definition: InputData.h:9