mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-11-29 18:37:41 +08:00
9697f95b8f
This reverts commit 15d999759e
.
19 lines
290 B
C++
19 lines
290 B
C++
#ifndef __SINGLECTRL_INCLUDE_H__
|
|
#define __SINGLECTRL_INCLUDE_H__
|
|
|
|
class CSingleCtrl
|
|
{
|
|
public:
|
|
CSingleCtrl(const char *pExeName);
|
|
~CSingleCtrl() {};
|
|
|
|
BOOL Check();
|
|
void Register();
|
|
void Remove();
|
|
protected:
|
|
CSingleCtrl() {};
|
|
private:
|
|
CString m_sExeName;
|
|
};
|
|
|
|
#endif |