mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-01-22 12:41:20 -05:00
12 lines
265 B
C++
12 lines
265 B
C++
#ifndef __FPROTO_PROTOLISTGENERAL_H__
|
|
#define __FPROTO_PROTOLISTGENERAL_H__
|
|
#include <stdint.h>
|
|
|
|
class FProtoListGeneral {
|
|
public:
|
|
FProtoListGeneral() {}
|
|
virtual ~FProtoListGeneral() {}
|
|
virtual void feed(bool level, uint32_t duration) = 0;
|
|
};
|
|
|
|
#endif |