28 lines
391 B
C++
28 lines
391 B
C++
/*
|
|
* EventHandler.cpp
|
|
*
|
|
* Created on: Sep 21, 2022
|
|
* Author: tylen
|
|
*/
|
|
|
|
#include <EventHandler.h>
|
|
|
|
EventHandler::EventHandler(EVENT_HANDL * btns) {
|
|
// TODO Auto-generated constructor stub
|
|
|
|
}
|
|
|
|
EventHandler::~EventHandler() {
|
|
// TODO Auto-generated destructor stub
|
|
}
|
|
|
|
int EventHandler::getSetPresuure(){
|
|
//TODO
|
|
return 0;
|
|
}
|
|
|
|
int EventHandler::getSetSpeed(){
|
|
// TODO
|
|
return 0;
|
|
}
|