ROOT
6.06/09
Reference Guide
ROOT Home Page
Main Page
Related Pages
User's Classes
Namespaces
All Classes
Files
Release Notes
File List
File Members
net
http
src
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
14
ClassImp
(
THttpEngine
)
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
28
THttpEngine::~THttpEngine
()
29
{
30
fServer
= 0;
31
}
THttpEngine::~THttpEngine
virtual ~THttpEngine()
destructor
Definition:
THttpEngine.cxx:28
TNamed
The TNamed class is the base class for all named ROOT classes.
Definition:
TNamed.h:33
THttpEngine
Definition:
THttpEngine.h:13
THttpEngine::fServer
THttpServer * fServer
Definition:
THttpEngine.h:17
name
#define name(a, b)
Definition:
linkTestLib0.cpp:5
THttpEngine.h
ClassImp
ClassImp(THttpEngine) THttpEngine
normal constructor
Definition:
THttpEngine.cxx:14