radio/lib/wDispatcher/logger.h

22 lines
291 B
C
Raw Normal View History

2018-08-04 21:46:25 +00:00
#ifndef LOGGER_H
#define LOGGER_H
#include "defaulthandler.h"
#include <wType/event.h>
namespace W
{
class Logger:
public DefaultHandler
{
public:
Logger();
~Logger();
bool call(const W::Event& ev) const;
};
}
#endif // LOGGER_H