small cleanup

This commit is contained in:
uvos 2022-03-11 21:42:28 +01:00
parent ed74a4fc83
commit ddd0b3a732
3 changed files with 1 additions and 48 deletions

View file

@ -19,15 +19,8 @@
class Microcontroller : public QObject
{
Q_OBJECT
public:
static constexpr char AMP_RELAY = 0;
static constexpr char SENSOR_TEMPERATURE = 1;
static constexpr char SENSOR_DOOR = 0 ;
private:
static constexpr int TRAIN_LIST = 1;
@ -80,7 +73,7 @@ signals:
void textRecived(const QString string);
void itemChanged(ItemData relay);
void auxStateChanged(int value);
void gotItemList(std::vector< std::shared_ptr<Item> >&);
void gotItemList(std::vector<std::shared_ptr<Item>>&);
};
#endif // MICROCONTROLLER_H