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