Warning, file /include/root/THttpEngine.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012 #ifndef ROOT_THttpEngine
0013 #define ROOT_THttpEngine
0014
0015 #include "TNamed.h"
0016
0017 class THttpServer;
0018
0019 class THttpEngine : public TNamed {
0020 protected:
0021 friend class THttpServer;
0022
0023 THttpServer *fServer{nullptr};
0024
0025 THttpEngine(const char *name, const char *title);
0026
0027 void SetServer(THttpServer *serv) { fServer = serv; }
0028
0029
0030 virtual void Terminate() {}
0031
0032
0033 virtual void Process() {}
0034
0035 public:
0036
0037 virtual Bool_t Create(const char *) { return kFALSE; }
0038
0039
0040 THttpServer *GetServer() const { return fServer; }
0041
0042 ClassDefOverride(THttpEngine, 0)
0043 };
0044
0045 #endif