mirror of
https://github.com/jpd002/Play-.git
synced 2025-05-13 05:56:46 +03:00
23 lines
387 B
C
23 lines
387 B
C
![]() |
#ifndef _OUTPUTWND_H_
|
||
|
#define _OUTPUTWND_H_
|
||
|
|
||
|
#include "win32/Window.h"
|
||
|
#include "Event.h"
|
||
|
|
||
|
class COutputWnd : public Framework::CWindow
|
||
|
{
|
||
|
public:
|
||
|
COutputWnd(HWND, RECT*);
|
||
|
~COutputWnd();
|
||
|
Framework::CEvent<int> m_OnSizeChange;
|
||
|
|
||
|
protected:
|
||
|
long OnPaint();
|
||
|
long OnSize(unsigned int, unsigned int, unsigned int);
|
||
|
|
||
|
private:
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif
|