blob: f1891eaf21724f4f9d1706c7e97f8ebc4bf032e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/**
* @file llfloaterwindlight_stub.cpp
* @brief stub class to allow unit testing
*
* $LicenseInfo:firstyear=2009&license=viewergpl$
* Copyright (c) 2009, Linden Research, Inc.
* $/LicenseInfo$
*/
class LLFloaterWindLight
{
public:
static bool isOpen(void);
static LLFloaterWindLight* instance(void);
void syncMenu(void);
};
bool LLFloaterWindLight::isOpen() { return true; }
LLFloaterWindLight* LLFloaterWindLight::instance() { return NULL; }
void LLFloaterWindLight::syncMenu(void) {}
|