00001 // Copyright (c) 2008-2010 Raynaldo (Wildicv) Rivera, Joshua (Dark_Kilauea) Jones 00002 // This file is part of the "cAudio Engine" 00003 // For conditions of distribution and use, see copyright notice in cAudio.h 00004 00005 #ifndef CCONSOLELOGRECEIVER_H_INCLUDED 00006 #define CCONSOLELOGRECEIVER_H_INCLUDED 00007 00008 #include "../include/ILogReceiver.h" 00009 00010 namespace cAudio 00011 { 00012 00013 class cConsoleLogReceiver : public ILogReceiver 00014 { 00015 public: 00016 virtual bool OnLogMessage(const char* sender, const char* message, LogLevel level, float time); 00017 }; 00018 00019 }; 00020 00021 #endif 00022
1.6.2