wxhelper/src/base_mgr.h

13 lines
259 B
C
Raw Permalink Normal View History

2023-03-31 21:21:35 +08:00
#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