blob: 3758e1e8373a4d7e369d1213b543b7861c463fc2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef T2DLL_T2DLGITEMIBUTTON_H
#define T2DLL_T2DLGITEMIBUTTON_H
#include "../common.h"
#include "T2DlgItemButtonBase.h"
class AFX_CLASS_EXPORT T2DlgItemIButton : public T2DlgItemButtonBase {
public:
T2DlgItemIButton(T2TowerDoc* inDoc, T2ImageObj* inImageObj, CPalette* inPalette);
protected:
virtual BOOL OnT2DlgItemEraseBkgnd(CDC*);
};
#endif
|