Refactored inheritance hierarchy of ContextAudio (former ContextVoice)

refs #85
This commit is contained in:
Roland Winklmeier
2014-03-08 16:57:33 +01:00
parent 1e8a2a5b01
commit 33aee8cb12
15 changed files with 461 additions and 359 deletions

View File

@@ -1,7 +1,7 @@
#include "tool.h"
#include "blackcore/coreruntime.h"
#include "blackcore/context_network.h"
#include "blackcore/context_voice.h"
#include "blackcore/context_audio.h"
#include "blackmisc/valuemap.h"
#include "blackmisc/avallclasses.h"
#include "blackmisc/pqallquantities.h"
@@ -43,7 +43,7 @@ namespace BlackMiscTest
while (line != "x")
{
const BlackCore::IContextNetwork *networkContext = core->getIContextNetwork();
const BlackCore::IContextVoice *voiceContext = core->getIContextVoice();
const BlackCore::IContextAudio *audioContext = core->getIContextAudio();
// display current status
qDebug() << "-------------";
@@ -95,7 +95,7 @@ namespace BlackMiscTest
{
qDebug() << "-------------";
qDebug() << "voice rooms";
qDebug() << voiceContext->getComVoiceRooms();
qDebug() << audioContext->getComVoiceRooms();
}
}