seperated public include headers

This commit is contained in:
Jonas Zeunert
2018-08-07 19:46:24 +02:00
parent a5dfe37514
commit 31d9a2b444
21 changed files with 374 additions and 6 deletions

View 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_ */