Belle II Software  release-05-02-19
Daemon.h
1 #ifndef _Daemon_hh
2 #define _Daemon_hh
3 
4 namespace Belle2 {
10  class Daemon {
11 
12  public:
13  static bool start(const char* title,
14  int argc, char** argv,
15  int nargc, const char* msg);
16 
17  static bool restart();
18 
19  private:
20  static int g_argc;
21  static char** g_argv;
22 
23  };
24 
26 };
27 
28 #endif
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::Daemon
Definition: Daemon.h:10