Commit f5721d41 authored by captainwong's avatar captainwong

added class auto_timer

parent e3850bc9
......@@ -138,4 +138,25 @@ inline std::wstring get_exe_path()
return std::wstring(path).substr(0, pos);
}
class auto_timer : public boost::noncopyable
{
private:
int m_timer_id;
DWORD m_time_out;
HWND m_hWnd;
public:
auto_timer(HWND hWnd, int timerId, DWORD timeout) : m_hWnd(hWnd), m_timer_id(timerId), m_time_out(timeout)
{
KillTimer(hWnd, m_timer_id);
}
~auto_timer()
{
SetTimer(m_hWnd, m_timer_id, m_time_out, nullptr);
}
};
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment