aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/fakevoicesoundsignal.cpp
blob: 2a271ad640c0fa653ed63540165b05199fa66fea (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
//----------------------------------------------------------------------
// Fake Voice Sound Signal
// author: JJ Ventrella
// THIS IS A TEMPORARY FILE FOR DEVELOPMENT PURPOSES ONLY
//----------------------------------------------------------------------

#include "llviewerprecompiledheaders.h"
#include "fakevoicesoundsignal.h"

//-----------------------------------------------
// constructor
//-----------------------------------------------
FakeVoiceSoundSignal::FakeVoiceSoundSignal()
{
}//---------------------------------------------------


//-----------------------------------------------
// destructor
//-----------------------------------------------
FakeVoiceSoundSignal::~FakeVoiceSoundSignal()
{
}//---------------------------------------------------

//---------------------------------------------------
F32 FakeVoiceSoundSignal::getAmplitude()
{
	return 0.0;

}//---------------------------------------------------


//---------------------------------------------------
bool FakeVoiceSoundSignal::getActive()
{
	return false;

}//---------------------------------------------------


//---------------------------------------------------
void FakeVoiceSoundSignal::update()
{	
	
}//---------------------------------------------------