2014-07-01 13:44:36 +02:00
|
|
|
/*
|
|
|
|
* Arduino JSON library
|
|
|
|
* Benoit Blanchon 2014 - MIT License
|
|
|
|
*/
|
2014-09-27 21:24:29 +02:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#ifndef ARDUINO
|
|
|
|
|
|
|
|
class Print;
|
|
|
|
|
|
|
|
class Printable
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
virtual size_t printTo(Print& p) const = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#include <Printable.h>
|
|
|
|
|
|
|
|
#endif
|