Vegastrike 0.5.1 rc1  1.0
Original sources for Vegastrike Evolved
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Renderer.cpp
Go to the documentation of this file.
1 //
2 // C++ Implementation: Audio::Renderer
3 //
4 
5 #include "Renderer.h"
6 #include "config.h"
7 
8 namespace Audio {
9 
11  {
12  }
13 
15  {
16  }
17 
19  throw()
20  {
21  meterDistance = distance;
22  }
23 
25  throw()
26  {
27  return meterDistance;
28  }
29 
31  throw()
32  {
33  dopplerFactor = factor;
34  }
35 
37  throw()
38  {
39  return dopplerFactor;
40  }
41 
42  void Renderer::setOutputFormat(const Format &format)
43  throw(Exception)
44  {
45  outputFormat = format;
46  }
47 
49  throw()
50  {
51  return outputFormat;
52  }
53 
55  throw(Exception)
56  {
57  // intentionally blank
58  }
59 
61  throw(Exception)
62  {
63  // intentionally blank
64  }
65 };