diff options
author | David A. Mellis <d.mellis@arduino.cc> | 2011-06-25 11:40:12 -0400 |
---|---|---|
committer | David A. Mellis <d.mellis@arduino.cc> | 2011-06-25 11:40:12 -0400 |
commit | adcd53451b48d7058fd8037250c3033a8c38b97d (patch) | |
tree | d59b4c6c842f90a7170666ac9081f162ecf623b1 /cores/arduino/Print.h | |
parent | f65e054eddf947f73290a338644b88516dcc95e9 (diff) | |
parent | a239d2c541094ef5445159360ae5d2d6a93dbf00 (diff) |
Merge branch 'new-extension' into platforms
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); }; |