]> git.tdb.fi Git - r2c2.git/blobdiff - source/designer/selection.h
Add Id tags and copyright notices to files
[r2c2.git] / source / designer / selection.h
index 21c5de187f0667ff4c0d82ab30f1093c4ff153c5..802c6f2b1d54e7b67f42fa1ceecb0b673ffe8d46 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_
 
@@ -7,6 +14,9 @@
 
 class Selection
 {
+private:
+       std::set<Marklin::Track *> tracks;
+
 public:
        sigc::signal<void> signal_changed;
 
@@ -19,8 +29,6 @@ public:
        void toggle_track(Marklin::Track *);
        void select_more();
        void select_linked();
-private:
-       std::set<Marklin::Track *> tracks;
 };
 
 #endif