blob: d98c9614b40f9beecad4fb4122d88c2510530ef3 (
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
33
34
35
  | 
/** 
 * @file llwldaycycle_stub.cpp
 * @brief  stub class to allow unit testing
 *
 * $LicenseInfo:firstyear=2009&license=viewergpl$
 * Copyright (c) 2009, Linden Research, Inc.
 * $/LicenseInfo$
 */
LLWLDayCycle::LLWLDayCycle(void)
{
}
LLWLDayCycle::~LLWLDayCycle(void)
{
}
bool LLWLDayCycle::getKeytime(LLWLParamKey keyFrame, F32& keyTime)
{
	keyTime = 0.5;
	return true;
}
bool LLWLDayCycle::removeKeyframe(F32 time)
{
	return true;
}
void LLWLDayCycle::loadDayCycleFromFile(const std::string& fileName)
{
}
void LLWLDayCycle::removeReferencesTo(const LLWLParamKey &keyframe)
{
}
  |