Belle II Software development
ProcessListener.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 _Belle2_ProcessListener_hh
9#define _Belle2_ProcessListener_hh
10
11namespace Belle2 {
17 class ProcessController;
18
20
21 public:
23 : m_con(con) {}
25
26 public:
27 void run();
28
29 private:
30 ProcessController* m_con;
31
32 };
33
35}
36
37#endif
38
Abstract base class for different kinds of events.