blob: fa498ac8ccb605ac3b7b9b55856619526df33b30 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef T2DLL_T2DLGITEMRADIOBUTTON_H
#define T2DLL_T2DLGITEMRADIOBUTTON_H
#include "../common.h"
#include "T2DlgItemICheck.h"
class T2DlgItemRadioButton : public T2DlgItemICheck {
public:
T2DlgItemRadioButton(T2TowerDoc *inDoc, T2ImageObj *inImageObj, CPalette *inPalette);
~T2DlgItemRadioButton();
protected:
void OnT2DlgItemLButtonDown(UINT inFlags, CPoint inPt);
};
#endif
|