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