]> git.tdb.fi Git - r2c2.git/blob - source/designer/trackproperties.h
Strip Id tags and copyright notices from files
[r2c2.git] / source / designer / trackproperties.h
1 #ifndef TRACKPROPERTIES_H_
2 #define TRACKPROPERTIES_H_
3
4 #include <msp/gltk/dialog.h>
5 #include <msp/gltk/entry.h>
6
7 class Selection;
8
9 class TrackProperties: public Msp::GLtk::Dialog
10 {
11 private:
12         const Selection &selection;
13         Msp::GLtk::Entry *ent_turnout_id;
14         Msp::GLtk::Entry *ent_sensor_id;
15
16 public:
17         TrackProperties(const Selection &);
18
19 private:
20         virtual void on_response(int);
21 };
22
23 #endif