ROOT
6.12/07
Reference Guide
net
http
src
THttpEngine.cxx
Go to the documentation of this file.
1
// $Id$
2
// Author: Sergey Linev 21/12/2013
3
4
/*************************************************************************
5
* Copyright (C) 1995-2013, Rene Brun and Fons Rademakers. *
6
* All rights reserved. *
7
* *
8
* For the licensing terms see $ROOTSYS/LICENSE. *
9
* For the list of contributors see $ROOTSYS/README/CREDITS. *
10
*************************************************************************/
11
12
#include "
THttpEngine.h
"
13
14
#include <string.h>
15
16
//////////////////////////////////////////////////////////////////////////
17
// //
18
// THttpEngine //
19
// //
20
// Abstract class for implementing http protocol for THttpServer //
21
// //
22
//////////////////////////////////////////////////////////////////////////
23
24
ClassImp
(
THttpEngine
);
25
26
////////////////////////////////////////////////////////////////////////////////
27
/// normal constructor
28
29
THttpEngine::THttpEngine
(
const
char
*
name
,
const
char
*title)
30
:
TNamed
(name, title), fServer(0)
31
{
32
}
33
34
////////////////////////////////////////////////////////////////////////////////
35
/// destructor
36
37
THttpEngine::~THttpEngine
()
38
{
39
fServer
= 0;
40
}
THttpEngine::~THttpEngine
virtual ~THttpEngine()
destructor
Definition:
THttpEngine.cxx:37
TNamed
The TNamed class is the base class for all named ROOT classes.
Definition:
TNamed.h:29
THttpEngine
Definition:
THttpEngine.h:19
THttpEngine::THttpEngine
THttpEngine(const char *name, const char *title)
normal constructor
Definition:
THttpEngine.cxx:29
THttpEngine::fServer
THttpServer * fServer
! object server
Definition:
THttpEngine.h:23
ClassImp
#define ClassImp(name)
Definition:
Rtypes.h:359
THttpEngine.h
name
char name[80]
Definition:
TGX11.cxx:109