// $Id$ // Author: Sergey Linev 21/12/2013 /************************************************************************* * Copyright (C) 1995-2013, Rene Brun and Fons Rademakers. * * All rights reserved. * * * * For the licensing terms see $ROOTSYS/LICENSE. * * For the list of contributors see $ROOTSYS/README/CREDITS. * *************************************************************************/ #include "THttpEngine.h" #include ////////////////////////////////////////////////////////////////////////// // // // THttpEngine // // // // Abstract class for implementing http protocol for THttpServer // // // ////////////////////////////////////////////////////////////////////////// ClassImp(THttpEngine); //////////////////////////////////////////////////////////////////////////////// /// normal constructor THttpEngine::THttpEngine(const char *name, const char *title) : TNamed(name, title), fServer(nullptr) { }