13 lines
182 B
C
13 lines
182 B
C
|
#ifndef _STREAM_H_
|
||
|
#define _STREAM_H_
|
||
|
|
||
|
#include <stdint.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
class Stream {
|
||
|
public:
|
||
|
Stream();
|
||
|
size_t write(uint8_t c);
|
||
|
};
|
||
|
|
||
|
#endif // _STREAM_H_
|