]> git.tdb.fi Git - r2c2.git/blobdiff - source/libmarklin/catalogue.h
Add accessors adding things to a Catalogue from the outside
[r2c2.git] / source / libmarklin / catalogue.h
index e531941b40fb6e1c072491f90094b2ae8164ce1a..641b6f8b13c3ea15275a987cdd76a8eff71035f5 100644 (file)
@@ -35,6 +35,9 @@ public:
                void track(unsigned);
        };
 
+       sigc::signal<void, const TrackType &> signal_track_added;
+       sigc::signal<void, const LocoType &> signal_loco_added;
+
 private:
        float scale;
        float gauge;
@@ -52,10 +55,15 @@ public:
        float get_gauge() const { return gauge; }
        const Profile &get_rail_profile() const { return rail_profile; }
        const Profile &get_ballast_profile() const { return ballast_profile; }
-       TrackType &get_track(unsigned) const;
+
+       void add_track(TrackType &);
+       const TrackType &get_track(unsigned) const;
        const std::map<unsigned, TrackType *> &get_tracks() const { return tracks; }
-       LocoType &get_locomotive(unsigned) const;
+
+       void add_locomotive(LocoType &);
+       const LocoType &get_locomotive(unsigned) const;
        const std::map<unsigned, LocoType *> &get_locomotives() const { return locos; }
+
        Layout &get_layout() { return layout; }
 };