33 lines
378 B
C++
33 lines
378 B
C++
/*
|
|
* ICabinetItem.h
|
|
*
|
|
* Created on: Aug 7, 2018
|
|
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert
|
|
*/
|
|
|
|
#ifndef _SRC_OUTPUT_ICABINETITEM_H_
|
|
#define _SRC_OUTPUT_ICABINETITEM_H_
|
|
|
|
#include <cstdint>
|
|
|
|
namespace flippR_driver
|
|
{
|
|
namespace output
|
|
{
|
|
namespace items
|
|
{
|
|
|
|
class IItem
|
|
{
|
|
public:
|
|
virtual ~IItem();
|
|
|
|
virtual uint8_t get_address() = 0;
|
|
};
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif
|