r65emu/socket_filer.h

20 lines
344 B
C++

#ifndef __SOCKET_FILER_H__
#define __SOCKET_FILER_H__
class socket_filer: public filer {
public:
const char *advance() { return 0; }
const char *rewind() { return advance(); }
const char *checkpoint();
void restore(const char *);
bool start(const char *);
void stop() {}
uint8_t read();
bool more();
void write(uint8_t);
};
#endif