blob: a2a4d3a08e9310c2155d3459de70f1d173a0ccc5 (
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 llstartuplistener.h
* @author Nat Goodspeed
* @date 2009-12-07
* @brief Event API to provide access to LLStartUp
*
* $LicenseInfo:firstyear=2009&license=viewergpl$
* Copyright (c) 2009, Linden Research, Inc.
* $/LicenseInfo$
*/
#if ! defined(LL_LLSTARTUPLISTENER_H)
#define LL_LLSTARTUPLISTENER_H
#include "lleventapi.h"
class LLStartUp;
class LLSD;
class LLStartupListener: public LLEventAPI
{
public:
LLStartupListener(/* LLStartUp* instance */); // all static members!
private:
void postStartupState(const LLSD&) const;
//LLStartup* mStartup;
};
#endif /* ! defined(LL_LLSTARTUPLISTENER_H) */
|