]> git.tdb.fi Git - r2c2.git/blobdiff - source/designer/selection.h
Add a pathfinder function to Route
[r2c2.git] / source / designer / selection.h
index 1c0d267f1618044271f7672c967c61d8cb118db6..abae6832ccfe2cc75f2777be45bc0be4cc636ba3 100644 (file)
@@ -1,3 +1,10 @@
+/* $Id$
+
+This file is part of the MSP Märklin suite
+Copyright © 2006-2008 Mikkosoft Productions, Mikko Rasa
+Distributed under the GPL
+*/
+
 #ifndef SELECTION_H_
 #define SELECTION_H_
 
 
 class Selection
 {
+public:
+       sigc::signal<void> signal_changed;
+
 private:
        std::set<Marklin::Track *> tracks;
 
 public:
-       sigc::signal<void> signal_changed;
-
        const std::set<Marklin::Track *> &get_tracks() const { return tracks; }
        Marklin::Track *get_track() const;
        unsigned size() const { return tracks.size(); }