From e722fc50b1438d300bcc29a022c4628af610eb52 Mon Sep 17 00:00:00 2001 From: Benoit Blanchon Date: Wed, 5 Nov 2014 12:51:22 +0100 Subject: [PATCH] Delete Printable interface because it's not used anymore --- include/ArduinoJson/Arduino/Printable.hpp | 24 ----------------------- 1 file changed, 24 deletions(-) delete mode 100644 include/ArduinoJson/Arduino/Printable.hpp diff --git a/include/ArduinoJson/Arduino/Printable.hpp b/include/ArduinoJson/Arduino/Printable.hpp deleted file mode 100644 index 504212a3..00000000 --- a/include/ArduinoJson/Arduino/Printable.hpp +++ /dev/null @@ -1,24 +0,0 @@ -// Copyright Benoit Blanchon 2014 -// MIT License -// -// Arduino JSON library -// https://github.com/bblanchon/ArduinoJson - -#pragma once - -#ifndef ARDUINO - -#include - -class Print; - -class Printable { - public: - virtual size_t printTo(Print &p) const = 0; -}; - -#else - -#include - -#endif