blob: 0a56c75422d345f6ea73713abe34a53008ec48d6 (
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
|
/**
* @file llpanelloginlistener.h
* @author Nat Goodspeed
* @date 2009-12-10
* @brief LLEventAPI for LLPanelLogin
*
* $LicenseInfo:firstyear=2009&license=viewergpl$
* Copyright (c) 2009, Linden Research, Inc.
* $/LicenseInfo$
*/
#if ! defined(LL_LLPANELLOGINLISTENER_H)
#define LL_LLPANELLOGINLISTENER_H
#include "lleventapi.h"
class LLPanelLogin;
class LLSD;
class LLPanelLoginListener: public LLEventAPI
{
public:
LLPanelLoginListener(LLPanelLogin* instance);
private:
void onClickConnect(const LLSD&) const;
LLPanelLogin* mPanel;
};
#endif /* ! defined(LL_LLPANELLOGINLISTENER_H) */
|