Delete Printable interface because it's not used anymore

This commit is contained in:
Benoit Blanchon
2014-11-05 12:51:22 +01:00
parent a9f4f611d4
commit e722fc50b1

View File

@ -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