added dir outputitems and moved items into

This commit is contained in:
Johannes Wendel
2018-11-20 22:52:45 +01:00
parent 2842ac20bb
commit 5a2242a850
17 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
/*
* ICabinetItem.h
*
* Created on: Aug 7, 2018
* Author: rhetenor
*/
#ifndef _SRC_OUTPUT_ICABINETITEM_H_
#define _SRC_OUTPUT_ICABINETITEM_H_
namespace flippR_driver
{
namespace output
{
class IOutputItem
{
virtual ~IOutputItem();
virtual bool isActivated() = 0;
virtual bool activate() = 0;
virtual bool deactivate() = 0;
};
}
}
#endif