diff options
author | David Mellis <d.mellis@arduino.cc> | 2011-09-02 19:58:39 -0400 |
---|---|---|
committer | David Mellis <d.mellis@arduino.cc> | 2011-09-02 19:58:39 -0400 |
commit | 560a510f6434efdfa0ebcfa9cd01093714e37f43 (patch) | |
tree | e2df099c669519dddac9fea6e54f7779252c1f0d /cores/arduino/Printable.h | |
parent | 67d414d4581804fabc40960f2184b54a0f830ac0 (diff) | |
parent | 6fd0590492542c8e510397465ac6740a06b4f8be (diff) |
Merge branch 'new-extension' of github.com:arduino/Arduino into new-extension
Diffstat (limited to 'cores/arduino/Printable.h')
-rw-r--r-- | cores/arduino/Printable.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cores/arduino/Printable.h b/cores/arduino/Printable.h index e22e87e..d03c9af 100644 --- a/cores/arduino/Printable.h +++ b/cores/arduino/Printable.h @@ -20,6 +20,8 @@ #ifndef Printable_h #define Printable_h +#include <new.h> + class Print; /** The Printable class provides a way for new classes to allow themselves to be printed. @@ -27,6 +29,7 @@ class Print; for users to print out instances of this class by passing them into the usual Print::print and Print::println methods. */ + class Printable { public: |