Belle II Software  release-08-01-10
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 
15 namespace Belle2 {
20  class CommandLine {
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.