24 lines
300 B
C++
24 lines
300 B
C++
/*
|
|
* ReceiverOval.h
|
|
*
|
|
* Created on: 12.10.2022
|
|
* Author: flori
|
|
*/
|
|
|
|
#ifndef RECEIVEROVAL_H_
|
|
#define RECEIVEROVAL_H_
|
|
|
|
#include "Receiver3ByteKey.h"
|
|
|
|
|
|
class ReceiverOval : public Receiver3ByteKey
|
|
{
|
|
public:
|
|
ReceiverOval();
|
|
};
|
|
|
|
|
|
extern ReceiverOval receiverOval;
|
|
|
|
#endif /* RECEIVEROVAL_H_ */
|