Belle II Software development
CommandLine.h
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#ifndef COMMANDLINE_H
9#define COMMANDLINE_H
10
11#include <string>
12#include <stdio.h>
13#include <string.h>
14
15namespace Belle2 {
21 public:
22 CommandLine() {}; // Constructor
23 ~CommandLine() {}; // Destructor
24
25 static int run_shell(const std::string& cmdstr, std::string& respstr);
26
27 };
28
30}
31
32#endif
Abstract base class for different kinds of events.