refactored displays

This commit is contained in:
Jonas Zeunert
2018-12-20 00:21:02 +01:00
parent bc35bcbea6
commit 120d3693f2
18 changed files with 125 additions and 124 deletions

View File

@@ -8,8 +8,6 @@
#ifndef _SRC_OUTPUT_ISOUND_H_
#define _SRC_OUTPUT_ISOUND_H_
#include "output/items/Item.h"
namespace flippR_driver
{
namespace output
@@ -20,8 +18,7 @@ namespace items
class Sound
{
public:
Sound();
virtual ~Sound();
virtual ~Sound() = default;
virtual void play() = 0;
};