cAudio 2.3.0
3d Audio Engine
Loading...
Searching...
No Matches
cConsoleLogReceiver.h
1// Copyright (c) 2008-2011 Raynaldo (Wildicv) Rivera, Joshua (Dark_Kilauea) Jones, Murat (wolfmanfx) Sari
2// This file is part of the "cAudio Engine"
3// For conditions of distribution and use, see copyright notice in cAudio.h
4
5#pragma once
6
7#include "ILogReceiver.h"
8#include "cAudioDefines.h"
9
10#if CAUDIO_COMPILE_WITH_CONSOLE_LOG_RECEIVER == 1
11namespace cAudio
12{
13
14 class cConsoleLogReceiver : public ILogReceiver
15 {
16 public:
17 virtual bool OnLogMessage(const char* sender, const char* message, LogLevel level, float time);
18 };
19
20};
21#endif
22
Main namespace for the entire cAudio library.
Definition: cAudioCapture.h:16