DABC (Data Acquisition Backbone Core)  2.9.9
TDabcEngine.h
Go to the documentation of this file.
1 // $Id: TDabcEngine.h 3887 2018-05-16 15:01:49Z linev $
2 
3 /************************************************************
4  * The Data Acquisition Backbone Core (DABC) *
5  ************************************************************
6  * Copyright (C) 2009 - *
7  * GSI Helmholtzzentrum fuer Schwerionenforschung GmbH *
8  * Planckstr. 1, 64291 Darmstadt, Germany *
9  * Contact: http://dabc.gsi.de *
10  ************************************************************
11  * This software can be used under the GPL license *
12  * agreements as stated in LICENSE.txt file *
13  * which is part of the distribution. *
14  ************************************************************/
15 
16 #ifndef ROOT_TDabcEngine
17 #define ROOT_TDabcEngine
18 
19 #ifndef ROOT_THttpEngine
20 #include "THttpEngine.h"
21 #endif
22 
23 class TDabcEngine : public THttpEngine {
24  protected:
25  virtual void Process();
26  public:
27  TDabcEngine();
28  virtual ~TDabcEngine();
29 
30  virtual Bool_t Create(const char *args);
31 
32  ClassDef(TDabcEngine, 0) // dabc engine for THttpServer
33 };
34 
35 
36 #endif
virtual Bool_t Create(const char *args)
Definition: TDabcEngine.cxx:37
virtual ~TDabcEngine()
Definition: TDabcEngine.cxx:32
virtual void Process()