blob: d7bbf39be1864825b959a65db616c112ff621bf7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/*
* prefpanelpasswords.h
* SecondLife
*
* Created by RMS on 8/5/08.
*
*/
#include "llpanel.h"
#ifndef PL_prefpanelpasswords_H
#define PL_prefpanelpasswords_H
class PasswordsController;
class PasswordsPrefPanel : public LLPanel
{
public:
PasswordsPrefPanel();
virtual ~PasswordsPrefPanel();
BOOL postBuild();
void apply();
void cancel();
protected:
PasswordsController *mController;
};
#endif // PL_prefpanelpasswords_H
|