mirror of
https://github.com/peterantypas/maiana.git
synced 2025-05-29 13:50:29 -07:00
23 lines
327 B
C++
23 lines
327 B
C++
/*
|
|
* DebugPrinter.hpp
|
|
*
|
|
* Created on: Apr 6, 2016
|
|
* Author: peter
|
|
*/
|
|
|
|
#ifndef DEBUGPRINTER_HPP_
|
|
#define DEBUGPRINTER_HPP_
|
|
|
|
#include "Events.hpp"
|
|
|
|
class DebugPrinter : public EventConsumer
|
|
{
|
|
public:
|
|
DebugPrinter();
|
|
virtual ~DebugPrinter();
|
|
|
|
void processEvent(Event* e);
|
|
};
|
|
|
|
#endif /* DEBUGPRINTER_HPP_ */
|