mirror of
https://github.com/dalathegreat/Battery-Emulator.git
synced 2025-10-03 01:39:30 +02:00
12 lines
162 B
C++
12 lines
162 B
C++
#ifndef STREAM_H
|
|
#define STREAM_H
|
|
|
|
#include "Print.h"
|
|
|
|
class Stream : public Print {
|
|
public:
|
|
virtual int available() = 0;
|
|
virtual int read() = 0;
|
|
};
|
|
|
|
#endif
|