mirror of
https://github.com/JorjBauer/aiie.git
synced 2024-11-26 11:49:19 +00:00
16 lines
281 B
C++
16 lines
281 B
C++
#ifndef __DUMMYSPEAKER_H
|
|
#define __DUMMYSPEAKER_H
|
|
|
|
#include <stdint.h>
|
|
#include "physicalspeaker.h"
|
|
|
|
class DummySpeaker : public PhysicalSpeaker {
|
|
public:
|
|
virtual ~DummySpeaker();
|
|
|
|
virtual void toggleAtCycle(uint32_t c);
|
|
virtual void maintainSpeaker(uint32_t c);
|
|
};
|
|
|
|
#endif
|