mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-15 01:10:52 +08:00
15 lines
245 B
C++
15 lines
245 B
C++
#pragma once
|
|
|
|
class CProcService
|
|
{
|
|
public:
|
|
CProcService(void) : m_procName(NULL) {}
|
|
void Init(const char *procname);
|
|
virtual ~CProcService(void);
|
|
void DebugArgv(void);
|
|
public:
|
|
int m_argc;
|
|
char **m_argv;
|
|
char *m_procName;
|
|
};
|