ROOT  6.07/01
Reference Guide
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
THttpEngine.cxx
Go to the documentation of this file.
1 // $Id$
2 // Author: Sergey Linev 21/12/2013
3 
4 #include "THttpEngine.h"
5 
6 //////////////////////////////////////////////////////////////////////////
7 // //
8 // THttpEngine //
9 // //
10 // Abstract class for implementing http protocol for THttpServer //
11 // //
12 //////////////////////////////////////////////////////////////////////////
13 
15 
16 ////////////////////////////////////////////////////////////////////////////////
17 /// normal constructor
18 
19 THttpEngine::THttpEngine(const char *name, const char *title) :
20  TNamed(name, title),
21  fServer(0)
22 {
23 }
24 
25 ////////////////////////////////////////////////////////////////////////////////
26 /// destructor
27 
29 {
30  fServer = 0;
31 }
virtual ~THttpEngine()
destructor
Definition: THttpEngine.cxx:28
The TNamed class is the base class for all named ROOT classes.
Definition: TNamed.h:33
TPaveLabel title(3, 27.1, 15, 28.7,"ROOT Environment and Tools")
THttpServer * fServer
Definition: THttpEngine.h:17
#define name(a, b)
Definition: linkTestLib0.cpp:5
ClassImp(THttpEngine) THttpEngine
normal constructor
Definition: THttpEngine.cxx:14