1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-17 22:23:10 +03:00

Making Client inherit from Stream, which unforunately means taking peek() out of Stream for now, since there's no immediate implementation for Client.

This commit is contained in:
David A. Mellis
2010-08-11 18:19:01 +00:00
parent 7bac64c4ac
commit 54d367b1e0
3 changed files with 6 additions and 7 deletions

View File

@ -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;
};