Added conditional macro to include some headers only when needed

This commit is contained in:
Th3maz1ng 2021-07-25 18:26:08 +02:00
parent 5813c6501d
commit ae90e07d59

View File

@ -4,7 +4,12 @@
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <Arduino.h>
#ifdef ARDUINO
#include <Arduino.h>
#else
typedef bool boolean;
#endif //ARDUINO
template <typename T>
class Dictionary;