The Gaudi Framework  master (181af51f)
Loading...
Searching...
No Matches
InputData.h
Go to the documentation of this file.
1/***********************************************************************************\
2* (c) Copyright 1998-2019 CERN for the benefit of the LHCb and ATLAS collaborations *
3* *
4* This software is distributed under the terms of the Apache version 2 licence, *
5* copied verbatim in the file "LICENSE". *
6* *
7* In applying this licence, CERN does not waive the privileges and immunities *
8* granted to it by virtue of its status as an Intergovernmental Organization *
9* or submit itself to any jurisdiction. *
10\***********************************************************************************/
11#pragma once
12
13#include <string>
14
15namespace Gaudi {
16 namespace Parsers {
18 struct InputData : std::string {
19 InputData( const std::string& s ) : std::string{ s } {}
20 using std::string::string;
21 using std::string::operator=;
22 };
23 } // namespace Parsers
24} // namespace Gaudi
STL class.
This file provides a Grammar for the type Gaudi::Accumulators::Axis It allows to use that type from p...
Definition __init__.py:1
STL namespace.
InputData(const std::string &s)
Definition InputData.h:19