diff options
author | amcewen <amcewen@bcs.org.uk> | 2011-04-01 21:10:38 +0100 |
---|---|---|
committer | amcewen <amcewen@bcs.org.uk> | 2011-04-01 21:10:38 +0100 |
commit | 2cedbeef132256ceca033f4b5073ab9aba818130 (patch) | |
tree | f799ab959ba4ed44dea8dcec905b35870fff3002 /cores/arduino/Print.cpp | |
parent | 11dd06436d6144420cc6f5b5d9a926e7f34818b1 (diff) |
Added Printable interface class to allow printing of classes such as IPAddress
Diffstat (limited to 'cores/arduino/Print.cpp')
-rwxr-xr-x | cores/arduino/Print.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/cores/arduino/Print.cpp b/cores/arduino/Print.cpp index 4ee556d..f5e77e0 100755 --- a/cores/arduino/Print.cpp +++ b/cores/arduino/Print.cpp @@ -101,6 +101,11 @@ void Print::print(double n, int digits) printFloat(n, digits); } +void Print::print(const Printable& x) +{ + x.printTo(*this); +} + void Print::println(void) { print('\r'); @@ -161,6 +166,12 @@ void Print::println(double n, int digits) println(); } +void Print::println(const Printable& x) +{ + print(x); + println(); +} + // Private Methods ///////////////////////////////////////////////////////////// void Print::printNumber(unsigned long n, uint8_t base) |