]> git.tdb.fi Git - r2c2.git/blob - source/engineer/trainproperties.h
89b6e94eb7311d427ec22fb60300435eba845828
[r2c2.git] / source / engineer / trainproperties.h
1 #ifndef TRAINPROPERTIES_H_
2 #define TRAINPROPERTIES_H_
3
4 #include <msp/gltk/entry.h>
5 #include <msp/gltk/panel.h>
6 #include <libmarklin/train.h>
7
8 class TrainProperties: public Msp::GLtk::Panel
9 {
10 public:
11         TrainProperties(Msp::GLtk::Resources &, Marklin::Train &);
12 private:
13         Marklin::Train &train;
14         Msp::GLtk::Entry *ent_id;
15         Msp::GLtk::Entry *ent_name;
16 };
17
18 #endif