Files
flippr-code/FlippR-Driver/include/output/output_items/ISound.h
Jonas Zeunert c1e4c0d658 is
2018-11-20 23:44:37 +01:00

27 lines
301 B
C++

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