Belle II Software development
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
12using namespace std;
13
14namespace 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
std::string m_uri
URI for the InputHandler.
Definition: InputHandler.h:79
InputContext which just returns the value of a string previously assigned.
Definition: StringHandler.h:21
virtual InputContext * open(const std::string &path) override
Create a new context, path will be ignored.
#define B2_GEARBOX_REGISTER_INPUTHANDLER(classname, prefix)
Helper macro to easily register new input handlers.
Definition: Gearbox.h:256
STL namespace.