changed things ♿
This commit is contained in:
24
FlippR-Driver/src/output/EventHandler.cpp
Normal file
24
FlippR-Driver/src/output/EventHandler.cpp
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
* EventHandler.cpp
|
||||
*
|
||||
* Created on: Jun 14, 2018
|
||||
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert, Rafael Vinci, Dr. Franca Rupprecht
|
||||
*/
|
||||
|
||||
#include "EventHandler.h"
|
||||
|
||||
namespace output
|
||||
{
|
||||
|
||||
EventHandler::EventHandler ()
|
||||
{
|
||||
// TODO Auto-generated constructor stub
|
||||
|
||||
}
|
||||
|
||||
EventHandler::~EventHandler ()
|
||||
{
|
||||
// TODO Auto-generated destructor stub
|
||||
}
|
||||
|
||||
} /* namespace output */
|
||||
28
FlippR-Driver/src/output/EventHandler.h
Normal file
28
FlippR-Driver/src/output/EventHandler.h
Normal file
@@ -0,0 +1,28 @@
|
||||
/*
|
||||
* EventHandler.h
|
||||
*
|
||||
* Created on: Jun 14, 2018
|
||||
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert, Rafael Vinci, Dr. Franca Rupprecht
|
||||
*/
|
||||
|
||||
|
||||
#include "../utilities/IEventHandler.h"
|
||||
|
||||
#ifndef SRC_OUTPUT_EVENTHANDLER_H_
|
||||
#define SRC_OUTPUT_EVENTHANDLER_H_
|
||||
|
||||
namespace output
|
||||
{
|
||||
|
||||
class EventHandler : public IEventHandler
|
||||
{
|
||||
public:
|
||||
EventHandler();
|
||||
virtual ~EventHandler();
|
||||
|
||||
virtual void handle() override;
|
||||
};
|
||||
|
||||
} /* namespace output */
|
||||
|
||||
#endif /* SRC_OUTPUT_EVENTHANDLER_H_ */
|
||||
Reference in New Issue
Block a user