Files
flippr-code/FlippR-Driver/src/output/Sound.h
2018-10-04 20:57:43 +02:00

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