Belle II Software  release-08-01-10
StringHandler.cc
1 /**************************************************************************
2  * basf2 (Belle II Analysis Software Framework) *
3  * Author: The Belle II Collaboration *
4  * *
5  * See git log for contributors and copyright holders. *
6  * This file is licensed under LGPL-3.0, see LICENSE.md. *
7  **************************************************************************/
8 
9 #include <framework/gearbox/StringHandler.h>
10 #include <framework/gearbox/Gearbox.h>
11 
12 using namespace std;
13 
14 namespace Belle2::gearbox {
15  B2_GEARBOX_REGISTER_INPUTHANDLER(StringHandler, "string");
16 
17  InputContext* StringHandler::open(const std::string&)
18  {
19  return new StringContext(m_uri);
20  }
21 } //Belle2 namespace
Class representing a resource context for gearbox.
Definition: InputHandler.h:25
InputContext which just returns the value of a string previously assigned.
Definition: StringHandler.h:21
#define B2_GEARBOX_REGISTER_INPUTHANDLER(classname, prefix)
Helper macro to easily register new input handlers.
Definition: Gearbox.h:256