seperated public include headers
This commit is contained in:
30
FlippR-Driver/src/output/Sound.h
Normal file
30
FlippR-Driver/src/output/Sound.h
Normal file
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
* Sound.h
|
||||
*
|
||||
* Created on: Aug 2, 2018
|
||||
* Author: rhetenor
|
||||
*/
|
||||
|
||||
#ifndef SOURCE_DIRECTORY__SRC_OUTPUT_SOUND_H_
|
||||
#define SOURCE_DIRECTORY__SRC_OUTPUT_SOUND_H_
|
||||
|
||||
#include "ISound.h"
|
||||
|
||||
#include <string>
|
||||
namespace output {
|
||||
|
||||
class Sound : ISound {
|
||||
public:
|
||||
Sound();
|
||||
virtual ~Sound();
|
||||
|
||||
virtual void play();
|
||||
|
||||
private:
|
||||
int address;
|
||||
std::string name;
|
||||
};
|
||||
|
||||
} /* namespace output */
|
||||
|
||||
#endif /* SOURCE_DIRECTORY__SRC_OUTPUT_SOUND_H_ */
|
||||
Reference in New Issue
Block a user