diff options
author | David A. Mellis <d.mellis@arduino.cc> | 2011-06-04 09:19:17 -0400 |
---|---|---|
committer | David A. Mellis <d.mellis@arduino.cc> | 2011-06-04 09:19:17 -0400 |
commit | a239d2c541094ef5445159360ae5d2d6a93dbf00 (patch) | |
tree | d11ccce46e93b0d971f0d6b2ab4812afd64f3c0c /cores/arduino/Print.h | |
parent | 664e9af2cd359b6e301c43cbfd21a80f390df5f4 (diff) |
Added Printable interface class to allow printing of classes such as IPAddress
Diffstat (limited to 'cores/arduino/Print.h')
-rwxr-xr-x | cores/arduino/Print.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cores/arduino/Print.h b/cores/arduino/Print.h index a447753..bf10b14 100755 --- a/cores/arduino/Print.h +++ b/cores/arduino/Print.h @@ -24,6 +24,7 @@ #include <stdio.h> // for size_t #include "WString.h" +#include "Printable.h" #define DEC 10 #define HEX 16 @@ -50,6 +51,7 @@ class Print void print(long, int = DEC); void print(unsigned long, int = DEC); void print(double, int = 2); + void print(const Printable&); void println(const __FlashStringHelper *); void println(const String &s); @@ -61,6 +63,7 @@ class Print void println(long, int = DEC); void println(unsigned long, int = DEC); void println(double, int = 2); + void println(const Printable&); void println(void); }; |