blob: 6a0b31f1f5bf2aad50633786e2a45055080405c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef _TOX_PROFILE_H_
#define _TOX_PROFILE_H_
class CToxPasswordEditor : public CToxDlgBase
{
private:
CCtrlEdit m_password;
CCtrlCheck m_savePermanently;
CCtrlButton m_ok;
protected:
void OnChange(CCtrlBase*);
void OnOk(CCtrlButton*);
public:
CToxPasswordEditor(CToxProto *proto);
wchar_t* GetPassword();
};
#endif //_TOX_PROFILE_H_
|