blob: ea904a99ff86b82bae69b85d79a920ad5d84cc9f (
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
|
/**
* @file lluilistener.h
* @author Nat Goodspeed
* @date 2009-08-18
* @brief Engage named functions as specified by XUI
*
* $LicenseInfo:firstyear=2009&license=viewergpl$
* Copyright (c) 2009, Linden Research, Inc.
* $/LicenseInfo$
*/
#if ! defined(LL_LLUILISTENER_H)
#define LL_LLUILISTENER_H
#include "lleventdispatcher.h"
#include <string>
class LLSD;
class LLUIListener: public LLDispatchListener
{
public:
LLUIListener(const std::string& name);
private:
void call(const LLSD& event) const;
};
#endif /* ! defined(LL_LLUILISTENER_H) */
|