blob: b24426b8aa56d5f68ee03921183bdd5a0d9e004b (
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
31
32
33
34
35
|
/*
* AuthenticationFloater.h
* Cross-grid authentication system view.
*
* Created by RMS on 7/1/08.
*
*/
#ifndef PL_AuthenticationFloater_H
#define PL_AuthenticationFloater_H
#include "llfloater.h"
#include "authentication_controller.h"
class AuthenticationFloater : public LLFloater
{
public:
AuthenticationFloater();
virtual ~AuthenticationFloater();
static void show(void* userdata);
static void accept();
static void cancel();
// data accessors
static AuthenticationController* controller();
private:
// static because we only need one floater
static AuthenticationFloater* sInstance;
static AuthenticationController* sController;
};
#endif // PL_AuthenticationFloater_H
|