changed everything to impl
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
#ifndef FLIPPR_DRIVER_IEIGHTDIGITDISPLAY_H
|
||||
#define FLIPPR_DRIVER_IEIGHTDIGITDISPLAY_H
|
||||
|
||||
#include "IOutputDisplay.h"
|
||||
#include "OutputDisplay.h"
|
||||
|
||||
#include <array>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* ILamp.h
|
||||
* Lamp.h
|
||||
*
|
||||
* Created on: Aug 7, 2018
|
||||
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert
|
||||
@@ -8,7 +8,7 @@
|
||||
#ifndef _SRC_OUTPUT_ILAMP_H_
|
||||
#define _SRC_OUTPUT_ILAMP_H_
|
||||
|
||||
#include "output/items/IItem.h"
|
||||
#include "output/items/Item.h"
|
||||
namespace flippR_driver
|
||||
{
|
||||
namespace output
|
||||
@@ -16,10 +16,10 @@ namespace output
|
||||
namespace items
|
||||
{
|
||||
|
||||
class ILamp
|
||||
class Lamp
|
||||
{
|
||||
public:
|
||||
~ILamp()
|
||||
~Lamp()
|
||||
{};
|
||||
|
||||
virtual void activate() = 0;
|
||||
@@ -5,7 +5,7 @@
|
||||
#ifndef FLIPPR_DRIVER_ISEVENDIGITDISPLAY_H
|
||||
#define FLIPPR_DRIVER_ISEVENDIGITDISPLAY_H
|
||||
|
||||
#include "IOutputDisplay.h"
|
||||
#include "OutputDisplay.h"
|
||||
|
||||
#include <array>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* ISolenoid.h
|
||||
* Solenoid.h
|
||||
*
|
||||
* Created on: Aug 7, 2018
|
||||
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert
|
||||
@@ -8,7 +8,7 @@
|
||||
#ifndef _SRC_OUTPUT_ISOLENOID_H_
|
||||
#define _SRC_OUTPUT_ISOLENOID_H_
|
||||
|
||||
#include "output/items/IItem.h"
|
||||
#include "output/items/Item.h"
|
||||
|
||||
namespace flippR_driver
|
||||
{
|
||||
@@ -17,10 +17,10 @@ namespace output
|
||||
namespace items
|
||||
{
|
||||
|
||||
class ISolenoid
|
||||
class Solenoid
|
||||
{
|
||||
public:
|
||||
~ISolenoid()
|
||||
~Solenoid()
|
||||
{};
|
||||
|
||||
virtual void trigger() = 0;
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* ISound.h
|
||||
* Sound.h
|
||||
*
|
||||
* Created on: Aug 2, 2018
|
||||
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert
|
||||
@@ -8,7 +8,7 @@
|
||||
#ifndef _SRC_OUTPUT_ISOUND_H_
|
||||
#define _SRC_OUTPUT_ISOUND_H_
|
||||
|
||||
#include "output/items/IItem.h"
|
||||
#include "output/items/Item.h"
|
||||
|
||||
namespace flippR_driver
|
||||
{
|
||||
@@ -17,11 +17,11 @@ namespace output
|
||||
namespace items
|
||||
{
|
||||
|
||||
class ISound
|
||||
class Sound
|
||||
{
|
||||
public:
|
||||
ISound();
|
||||
virtual ~ISound();
|
||||
Sound();
|
||||
virtual ~Sound();
|
||||
|
||||
virtual void play() = 0;
|
||||
};
|
||||
Reference in New Issue
Block a user