35 lines
383 B
C++
35 lines
383 B
C++
/*
|
|
* Sound.h
|
|
*
|
|
* Created on: Aug 2, 2018
|
|
* Author: rhetenor
|
|
*/
|
|
|
|
#ifndef _SRC_OUTPUT_SOUND_H_
|
|
#define _SRC_OUTPUT_SOUND_H_
|
|
|
|
#include "ISound.h"
|
|
|
|
#include <string>
|
|
|
|
namespace FlippR_Driver
|
|
{
|
|
namespace output
|
|
{
|
|
|
|
class Sound : ISound
|
|
{
|
|
public:
|
|
Sound();
|
|
virtual ~Sound();
|
|
|
|
virtual void play();
|
|
|
|
private:
|
|
int address;
|
|
std::string name;
|
|
};
|
|
|
|
} /* namespace output */
|
|
}
|
|
#endif |