TouchHandler: remove unused FreeRTOS.h and task.h includes from header

FreeRTOS and task.h aren't used in the Header file. Furthermore the
SystemTask forward declaration isn't needed as it isn't used in the
header.
This commit is contained in:
Reinhold Gschweicher 2021-12-05 14:32:26 +01:00 committed by JF
parent 9db5d64441
commit 23f318c3d0

View File

@ -1,8 +1,6 @@
#pragma once
#include "drivers/Cst816s.h"
#include "systemtask/SystemTask.h"
#include <FreeRTOS.h>
#include <task.h>
namespace Pinetime {
namespace Components {
@ -11,9 +9,6 @@ namespace Pinetime {
namespace Drivers {
class Cst816S;
}
namespace System {
class SystemTask;
}
namespace Controllers {
class TouchHandler {
public: