blob: 8605d60bd33ecae10252b81965be9d873314fe09 (
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 "lleventapi.h"
#include <string>
class LLSD;
class LLUIListener: public LLEventAPI
{
public:
    LLUIListener();
private:
    void call(const LLSD& event) const;
};
#endif /* ! defined(LL_LLUILISTENER_H) */
 |