DCC-EX Simple Throttle
Simple throttle for a DCC-EX CommandStation
Loading...
Searching...
No Matches
/home/runner/work/DCCEXSimpleThrottle/DCCEXSimpleThrottle/LocoMenuItem.h
Go to the documentation of this file.
1/*
2 * © 2024 Peter Cole
3 * © 2023 Peter Cole
4 *
5 * This is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * It is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this code. If not, see <https://www.gnu.org/licenses/>.
17 */
18
19#ifndef LOCOMENUITEM_H
20#define LOCOMENUITEM_H
21
22#include "BaseMenuItem.h"
23#include <DCCEXProtocol.h>
24
26class LocoMenuItem : public BaseMenuItem {
27public:
30 LocoMenuItem(Loco *loco);
31
34 Loco *getLoco();
35
36private:
37 Loco *_loco;
38};
39
40#endif // LOCOMENUITEM_H
Base class for all menu item types, and all menu item types must inherit from this....
Definition BaseMenuItem.h:28
Extension of the BaseMenuItem class to allow users to select a Loco.
Definition LocoMenuItem.h:26
Loco * getLoco()
Get the Loco object associated with this menu item.
Definition LocoMenuItem.cpp:23
Loco * _loco
Definition LocoMenuItem.h:37