mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-11-30 02:47:56 +08:00
9697f95b8f
This reverts commit 15d999759e
.
22 lines
420 B
C++
22 lines
420 B
C++
#pragma once
|
|
#include "procservice.h"
|
|
|
|
class CHttpService : public CProcService
|
|
{
|
|
public:
|
|
CHttpService(
|
|
const char *procname,
|
|
const char *addr,
|
|
const char * vhostPath,
|
|
const char * vhostDefault,
|
|
const char * tmplPath,
|
|
const char * filterInfo);
|
|
~CHttpService(void);
|
|
private:
|
|
CString m_addr;
|
|
CString m_vhostPath;
|
|
CString m_vhostDefault;
|
|
CString m_tmplPath;
|
|
CString m_filterInfo;
|
|
};
|