Gray C++ Libraries  0.0.2
A set of C++ libraries for MSVC, GNU on Windows, WinCE, Linux
cCmdHttpServer.h
Go to the documentation of this file.
1 //
5 //
6 
7 #ifndef _INC_cCmdHttpServer_H
8 #define _INC_cCmdHttpServer_H
9 #ifndef NO_PRAGMA_ONCE
10 #pragma once
11 #endif
12 
13 #include "GrayX.h"
14 
15 namespace GrayX
16 {
17  class cCmdHttpServer : public GrayXCmd
18  {
21 
22  public:
24  public:
26  virtual ~cCmdHttpServer();
27 
28  virtual HRESULT DoCmd(const FILECHAR_t* pszArgs) override;
29  };
30 }
31 
32 #endif
33 
INT32 HRESULT
_WIN32 style error codes. INT32
Definition: SysTypes.h:465
Definition: GrayX.h:43
Definition: cCmdHttpServer.h:18
virtual ~cCmdHttpServer()
Definition: cCmdHttpServer.cpp:90
virtual HRESULT DoCmd(const FILECHAR_t *pszArgs) override
Definition: cCmdHttpServer.cpp:94
cStringF m_sDir
Definition: cCmdHttpServer.h:23
cCmdHttpServer(cStringF sDir)
Definition: cCmdHttpServer.cpp:85
Definition: GrayX.cpp:52
char FILECHAR_t
a UTF8 char in a file name. like TCHAR
Definition: FileName.h:22