mirror of
https://github.com/JorjBauer/aiie.git
synced 2024-11-25 19:31:36 +00:00
16 lines
250 B
C++
16 lines
250 B
C++
#ifndef __PHYSICALSPEAKER_H
|
|
#define __PHYSICALSPEAKER_H
|
|
|
|
#include <stdint.h>
|
|
|
|
class PhysicalSpeaker {
|
|
public:
|
|
virtual ~PhysicalSpeaker() {}
|
|
|
|
virtual void toggleAtCycle(uint32_t c) = 0;
|
|
virtual void maintainSpeaker(uint32_t c) = 0;
|
|
|
|
};
|
|
|
|
#endif
|