My Project
Loading...
Searching...
No Matches
BLELocomotiveConfiguration.h
Go to the documentation of this file.
1#pragma once
2
4#include "MCLocoEvent.h"
5
7{
8 public:
9 BLELocomotiveConfiguration(uint address, std::string name, std::vector<BLEHubConfiguration *> hubs, std::vector<MCLocoEvent *> events);
10
12 std::string _name;
13 std::vector<BLEHubConfiguration *> _hubs;
14 std::vector<MCLocoEvent *> _events;
15};
Definition BLELocomotiveConfiguration.h:7
uint _address
Definition BLELocomotiveConfiguration.h:11
std::vector< BLEHubConfiguration * > _hubs
Definition BLELocomotiveConfiguration.h:13
std::string _name
Definition BLELocomotiveConfiguration.h:12
BLELocomotiveConfiguration(uint address, std::string name, std::vector< BLEHubConfiguration * > hubs, std::vector< MCLocoEvent * > events)
Definition BLELocomotiveConfiguration.cpp:6
std::vector< MCLocoEvent * > _events
Definition BLELocomotiveConfiguration.h:14