blob: 894afcbb5124a14b6606625423086ddc9b587d9d (
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
|
/**
* @file llurldispatcherlistener.h
* @author Nat Goodspeed
* @date 2009-12-10
* @brief LLEventAPI for LLURLDispatcher
*
* $LicenseInfo:firstyear=2009&license=viewergpl$
* Copyright (c) 2009, Linden Research, Inc.
* $/LicenseInfo$
*/
#if ! defined(LL_LLURLDISPATCHERLISTENER_H)
#define LL_LLURLDISPATCHERLISTENER_H
#include "lleventapi.h"
class LLURLDispatcher;
class LLSD;
class LLURLDispatcherListener: public LLEventAPI
{
public:
LLURLDispatcherListener(/* LLURLDispatcher* instance */); // all static members
private:
void dispatch(const LLSD& params) const;
void dispatchRightClick(const LLSD& params) const;
void dispatchFromTextEditor(const LLSD& params) const;
//LLURLDispatcher* mDispatcher;
};
#endif /* ! defined(LL_LLURLDISPATCHERLISTENER_H) */
|