2017-12-18 21:24:21 +01:00
|
|
|
//
|
|
|
|
// Created by mpapa on 05.12.2017.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef SOURCE_ABSTRACTIONLAYER_1_PROPERTIES_H
|
|
|
|
#define SOURCE_ABSTRACTIONLAYER_1_PROPERTIES_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
class AbstractionLayer_1_Properties
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
AbstractionLayer_1_Properties() : m_connections(0b11111111) {}
|
2017-12-23 10:11:07 +01:00
|
|
|
void shift(int shifts);
|
2018-01-07 20:08:50 +01:00
|
|
|
uint8_t getConnections(){return m_connections;};
|
2017-12-23 10:11:07 +01:00
|
|
|
void print();
|
|
|
|
|
2017-12-18 21:24:21 +01:00
|
|
|
private:
|
|
|
|
uint8_t m_connections;
|
|
|
|
friend class AbstractionLayer_1;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2017-12-21 13:07:01 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
2017-12-18 21:24:21 +01:00
|
|
|
#endif //SOURCE_ABSTRACTIONLAYER_1_PROPERTIES_H
|