Add include guards and use explicit inclusions

This commit is contained in:
Robert Marshall 2022-08-18 21:56:17 +01:00
parent aaa30cd2aa
commit 6b600e021e
7 changed files with 34 additions and 2 deletions

View file

@ -1,3 +1,6 @@
#ifndef LedManager_cpp
#define LedManager_cpp
#include "LED.cpp"
#include "TimerManager.cpp"
#include <map>
@ -33,4 +36,6 @@ public:
if (timer > 0)
_timers->reset(id, timer);
}
};
};
#endif