Added conditional macro to include some headers only when needed
This commit is contained in:
parent
5813c6501d
commit
ae90e07d59
@ -4,7 +4,12 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
|
#ifdef ARDUINO
|
||||||
#include <Arduino.h>
|
#include <Arduino.h>
|
||||||
|
#else
|
||||||
|
typedef bool boolean;
|
||||||
|
#endif //ARDUINO
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
class Dictionary;
|
class Dictionary;
|
||||||
|
Loading…
Reference in New Issue
Block a user