Files
flippr-code/FlippR-Driver/include/output/items/ISound.h
Jonas Zeunert 2a761f3267 asdf
2018-11-23 16:34:31 +01:00

30 lines
362 B
C++

/*
* ISound.h
*
* Created on: Aug 2, 2018
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert
*/
#ifndef _SRC_OUTPUT_ISOUND_H_
#define _SRC_OUTPUT_ISOUND_H_
namespace flippR_driver
{
namespace output
{
namespace items
{
class ISound
{
public:
ISound();
virtual ~ISound();
virtual void play() = 0;
};
}
} /* namespace output */
}
#endif