Files
flippr-code/FlippR-Driver/include/output/items/Sound.h
2018-12-14 03:14:50 +01:00

32 lines
390 B
C++

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