pubsubclient/AAL/Stream.h

13 lines
182 B
C
Raw Permalink Normal View History

#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_