forked from bblanchon/ArduinoJson
Delete Printable interface because it's not used anymore
This commit is contained in:
@ -1,24 +0,0 @@
|
|||||||
// Copyright Benoit Blanchon 2014
|
|
||||||
// MIT License
|
|
||||||
//
|
|
||||||
// Arduino JSON library
|
|
||||||
// https://github.com/bblanchon/ArduinoJson
|
|
||||||
|
|
||||||
#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
|
|
Reference in New Issue
Block a user