forked from bblanchon/ArduinoJson
24 lines
250 B
C++
24 lines
250 B
C++
/*
|
|
* Arduino JSON library
|
|
* Benoit Blanchon 2014 - MIT License
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifndef ARDUINO
|
|
|
|
#include <stddef.h>
|
|
|
|
class Print;
|
|
|
|
class Printable {
|
|
public:
|
|
virtual size_t printTo(Print &p) const = 0;
|
|
};
|
|
|
|
#else
|
|
|
|
#include <Printable.h>
|
|
|
|
#endif
|