This commit is contained in:
Jonas Zeunert
2018-11-20 23:44:37 +01:00
parent d767449dce
commit c1e4c0d658
11 changed files with 13 additions and 7 deletions

View File

@@ -1,25 +0,0 @@
/*
* IOutputDriver.h
*
* Created on: Aug 2, 2018
* Author: rhetenor
*/
#ifndef _SRC_OUTPUT_IOUTPUTDRIVER_H_
#define _SRC_OUTPUT_IOUTPUTDRIVER_H_
namespace flippR_driver
{
namespace output
{
class IOutputDriver
{
public:
IOutputDriver();
virtual ~IOutputDriver();
};
} /* namespace output */
}
#endif

View File

@@ -8,7 +8,7 @@
#ifndef _SRC_OUTPUT_OUTPUTDRIVER_H_
#define _SRC_OUTPUT_OUTPUTDRIVER_H_
#include "IOutputDriver.h"
#include "output/IOutputDriver.h"
#include <vector>
#include <map>
#include <memory>

View File

@@ -1,24 +0,0 @@
/*
* ILamp.h
*
* Created on: Aug 7, 2018
* Author: rhetenor
*/
#ifndef _SRC_OUTPUT_ILAMP_H_
#define _SRC_OUTPUT_ILAMP_H_
namespace flippR_driver
{
namespace output
{
class ILamp
{
};
}
}
#endif

View File

@@ -1,24 +0,0 @@
/*
* ISolenoid.h
*
* Created on: Aug 7, 2018
* Author: rhetenor
*/
#ifndef _SRC_OUTPUT_ISOLENOID_H_
#define _SRC_OUTPUT_ISOLENOID_H_
namespace flippR_driver
{
namespace output
{
class ISolenoid
{
};
}
}
#endif

View File

@@ -1,27 +0,0 @@
/*
* 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

View File

@@ -9,7 +9,7 @@
#define _SRC_OUTPUT_LAMP_H_
#include "OutputItem.h"
#include "ILamp.h"
#include "../../../include/output/output_items/ILamp.h"
namespace flippR_driver
{

View File

@@ -9,7 +9,7 @@
#define _SRC_OUTPUT_SOLENOID_H_
#include "OutputItem.h"
#include "ISolenoid.h"
#include "../../../include/output/output_items/ISolenoid.h"
#include <future>
#include <thread>

View File

@@ -8,7 +8,7 @@
#ifndef _SRC_OUTPUT_SOUND_H_
#define _SRC_OUTPUT_SOUND_H_
#include "ISound.h"
#include "../../../include/output/output_items/ISound.h"
#include <memory>
#include <string>