Compare commits

..

2 Commits

View File

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