mirror of
https://github.com/ttttupup/wxhelper.git
synced 2024-11-05 18:09:24 +08:00
13 lines
259 B
C++
13 lines
259 B
C++
#ifndef WXHELPER_BASE_MGR_H_
|
|
#define WXHELPER_BASE_MGR_H_
|
|
#include <Windows.h>
|
|
namespace wxhelper{
|
|
class BaseMgr{
|
|
public:
|
|
explicit BaseMgr(DWORD base);
|
|
~BaseMgr();
|
|
protected:
|
|
DWORD base_addr_;
|
|
};
|
|
}
|
|
#endif |