changed everything to impl

This commit is contained in:
Jonas Zeunert
2018-12-14 03:14:50 +01:00
parent ff3376b9d7
commit 2b9981e521
40 changed files with 271 additions and 236 deletions

View File

@@ -0,0 +1,33 @@
/*
* Solenoid.h
*
* Created on: Aug 7, 2018
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert
*/
#ifndef _SRC_OUTPUT_ISOLENOID_H_
#define _SRC_OUTPUT_ISOLENOID_H_
#include "output/items/Item.h"
namespace flippR_driver
{
namespace output
{
namespace items
{
class Solenoid
{
public:
~Solenoid()
{};
virtual void trigger() = 0;
};
}
}
}
#endif