diff options
author | David A. Mellis <d.mellis@arduino.cc> | 2010-08-11 18:19:01 +0000 |
---|---|---|
committer | David A. Mellis <d.mellis@arduino.cc> | 2010-08-11 18:19:01 +0000 |
commit | 8dca3d5ad33b8ba7de070a0a0481ac9763c323a6 (patch) | |
tree | 755da575daf1ec345fade96c23524fda83b4b88f /cores/arduino/Stream.h | |
parent | 2753f3f5d8da7498d7674cecf03b65d569e91fd0 (diff) |
Making Client inherit from Stream, which unforunately means taking peek() out of Stream for now, since there's no immediate implementation for Client.
Diffstat (limited to 'cores/arduino/Stream.h')
-rw-r--r-- | cores/arduino/Stream.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cores/arduino/Stream.h b/cores/arduino/Stream.h index 1c72ec2..c98759b 100644 --- a/cores/arduino/Stream.h +++ b/cores/arduino/Stream.h @@ -27,7 +27,6 @@ class Stream : public Print { public: virtual int available() = 0; - virtual int peek() = 0; virtual int read() = 0; virtual void flush() = 0; }; |