From 8dca3d5ad33b8ba7de070a0a0481ac9763c323a6 Mon Sep 17 00:00:00 2001 From: "David A. Mellis" Date: Wed, 11 Aug 2010 18:19:01 +0000 Subject: Making Client inherit from Stream, which unforunately means taking peek() out of Stream for now, since there's no immediate implementation for Client. --- cores/arduino/Stream.h | 1 - 1 file changed, 1 deletion(-) (limited to 'cores/arduino') 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; }; -- cgit v1.2.3-18-g5258