changed everything to impl
This commit is contained in:
33
FlippR-Driver/include/output/items/Solenoid.h
Normal file
33
FlippR-Driver/include/output/items/Solenoid.h
Normal 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
|
||||
Reference in New Issue
Block a user