#include <SoundManager.h>
Inheritance diagram for vrj::SoundManager:

Public Methods | |
| virtual bool | configAdd (jccl::ConfigElementPtr element) |
| Adds the element to the configuration. More... | |
| virtual bool | configRemove (jccl::ConfigElementPtr element) |
| Removes the element from the current configuration. More... | |
| virtual bool | configCanHandle (jccl::ConfigElementPtr element) |
| Can the handler handle the given element? More... | |
| virtual void | update () |
| Enables a frame to be drawn. More... | |
| virtual void | sync () |
| Blocks until the end of the frame. More... | |
Definition at line 47 of file SoundManager.h.
|
|
Adds the element to the configuration.
Reimplemented in vrj::SoundManagerSonix. Definition at line 54 of file SoundManager.h.
00055 {
00056 boost::ignore_unused_variable_warning(element);
00057 return false;
00058 }
|
|
|
Removes the element from the current configuration.
Reimplemented in vrj::SoundManagerSonix. Definition at line 64 of file SoundManager.h.
00065 {
00066 boost::ignore_unused_variable_warning(element);
00067 return false;
00068 }
|
|
|
Can the handler handle the given element?
Reimplemented in vrj::SoundManagerSonix. Definition at line 74 of file SoundManager.h.
00075 {
00076 boost::ignore_unused_variable_warning(element);
00077 return false;
00078 }
|
|
|
Enables a frame to be drawn.
Reimplemented in vrj::SoundManagerSonix. Definition at line 82 of file SoundManager.h.
00082 {}
|
|
|
Blocks until the end of the frame.
Reimplemented in vrj::SoundManagerSonix. Definition at line 88 of file SoundManager.h.
00088 {}
|
1.2.14 written by Dimitri van Heesch,
© 1997-2002