caudio/Examples/Tutorial7_CustomLogReceiver/cTestLogReceiver.cpp

27 lines
563 B
C++

#include "cTestLogReceiver.h"
#include <iostream>
cTestLogReceiver::cTestLogReceiver()
{
}
cTestLogReceiver::~cTestLogReceiver()
{
}
bool cTestLogReceiver::OnLogMessage(const char* sender, const char* message, cAudio::LogLevel level, float time)
{
//Every time we get a message it will have the following information
//What/who sent the message
//The message it contains
//What log level it is
//The time the message was logged
//For now we will just display the word MESSAGE everytime we get a new message
std::cout<<"Message!\n";
return true;
}