From 3e9c210ddc036cd015228504cc0803c909e27f84 Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Fri, 6 Jun 2008 12:11:49 +0000 Subject: [PATCH] Add Id tags and copyright notices to files --- engineer.res | 2 ++ locos.dat | 2 ++ source/3d/layout.cpp | 7 +++++++ source/3d/layout.h | 7 +++++++ source/3d/track.cpp | 7 +++++++ source/3d/track.h | 7 +++++++ source/designer/designer.cpp | 7 +++++++ source/designer/designer.h | 7 +++++++ source/designer/input.cpp | 7 +++++++ source/designer/input.h | 7 +++++++ source/designer/manipulator.cpp | 7 +++++++ source/designer/manipulator.h | 7 +++++++ source/designer/measure.cpp | 7 +++++++ source/designer/measure.h | 7 +++++++ source/designer/selection.cpp | 7 +++++++ source/designer/selection.h | 7 +++++++ source/engineer/engineer.cpp | 7 +++++++ source/engineer/engineer.h | 7 +++++++ source/engineer/mainpanel.cpp | 7 +++++++ source/engineer/mainpanel.h | 7 +++++++ source/engineer/trainpanel.cpp | 7 +++++++ source/engineer/trainpanel.h | 7 +++++++ source/engineer/trainproperties.cpp | 7 +++++++ source/engineer/trainproperties.h | 7 +++++++ source/libmarklin/block.cpp | 7 +++++++ source/libmarklin/block.h | 7 +++++++ source/libmarklin/catalogue.cpp | 7 +++++++ source/libmarklin/catalogue.h | 7 +++++++ source/libmarklin/command.cpp | 7 +++++++ source/libmarklin/command.h | 7 +++++++ source/libmarklin/constants.h | 7 +++++++ source/libmarklin/control.cpp | 7 +++++++ source/libmarklin/control.h | 7 +++++++ source/libmarklin/endpoint.h | 7 +++++++ source/libmarklin/geometry.h | 7 +++++++ source/libmarklin/layout.cpp | 7 +++++++ source/libmarklin/layout.h | 7 +++++++ source/libmarklin/locomotive.cpp | 7 +++++++ source/libmarklin/locomotive.h | 7 +++++++ source/libmarklin/locotype.cpp | 7 +++++++ source/libmarklin/locotype.h | 7 +++++++ source/libmarklin/route.cpp | 7 +++++++ source/libmarklin/route.h | 7 +++++++ source/libmarklin/sensor.cpp | 7 +++++++ source/libmarklin/sensor.h | 7 +++++++ source/libmarklin/track.cpp | 7 +++++++ source/libmarklin/track.h | 7 +++++++ source/libmarklin/trackpart.cpp | 7 +++++++ source/libmarklin/trackpart.h | 7 +++++++ source/libmarklin/tracktype.cpp | 7 +++++++ source/libmarklin/tracktype.h | 7 +++++++ source/libmarklin/trafficmanager.cpp | 7 +++++++ source/libmarklin/trafficmanager.h | 7 +++++++ source/libmarklin/train.cpp | 7 +++++++ source/libmarklin/train.h | 7 +++++++ source/libmarklin/turnout.cpp | 7 +++++++ source/libmarklin/turnout.h | 7 +++++++ source/shoppinglist/main.cpp | 7 +++++++ tracks.dat | 2 ++ 59 files changed, 398 insertions(+) diff --git a/engineer.res b/engineer.res index c5650af..ce53e1c 100644 --- a/engineer.res +++ b/engineer.res @@ -1,3 +1,5 @@ +/* $Id$ */ + default_font "dejavu-12.font"; graphic "greybutton" diff --git a/locos.dat b/locos.dat index 6243505..46542e8 100644 --- a/locos.dat +++ b/locos.dat @@ -1,3 +1,5 @@ +/* $Id$ */ + locomotive 37844 { name "BR 50"; diff --git a/source/3d/layout.cpp b/source/3d/layout.cpp index 9c260b9..9c174fb 100644 --- a/source/3d/layout.cpp +++ b/source/3d/layout.cpp @@ -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 +*/ + #include #include #include diff --git a/source/3d/layout.h b/source/3d/layout.h index d469dc9..c2faa46 100644 --- a/source/3d/layout.h +++ b/source/3d/layout.h @@ -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 MARKLIN3D_LAYOUT_H_ #define MARKLIN3D_LAYOUT_H_ diff --git a/source/3d/track.cpp b/source/3d/track.cpp index 9d5c5df..5891360 100644 --- a/source/3d/track.cpp +++ b/source/3d/track.cpp @@ -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 +*/ + #include #include #include diff --git a/source/3d/track.h b/source/3d/track.h index cf3c051..7131877 100644 --- a/source/3d/track.h +++ b/source/3d/track.h @@ -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 MARKLIN3D_TRACK_H_ #define MARKLIN3D_TRACK_H_ diff --git a/source/designer/designer.cpp b/source/designer/designer.cpp index 3ca630f..f38dae9 100644 --- a/source/designer/designer.cpp +++ b/source/designer/designer.cpp @@ -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 +*/ + #include #include #include diff --git a/source/designer/designer.h b/source/designer/designer.h index c72dd5c..6e4e78d 100644 --- a/source/designer/designer.h +++ b/source/designer/designer.h @@ -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 DESIGNER_H_ #define DESIGNER_H_ diff --git a/source/designer/input.cpp b/source/designer/input.cpp index 1b18646..5c2e921 100644 --- a/source/designer/input.cpp +++ b/source/designer/input.cpp @@ -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 +*/ + #include #include #include diff --git a/source/designer/input.h b/source/designer/input.h index 276ce5f..3449e2b 100644 --- a/source/designer/input.h +++ b/source/designer/input.h @@ -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 INPUT_H_ #define INPUT_H_ diff --git a/source/designer/manipulator.cpp b/source/designer/manipulator.cpp index c07003e..34aaf31 100644 --- a/source/designer/manipulator.cpp +++ b/source/designer/manipulator.cpp @@ -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 +*/ + #include #include #include diff --git a/source/designer/manipulator.h b/source/designer/manipulator.h index a17ad8d..b482251 100644 --- a/source/designer/manipulator.h +++ b/source/designer/manipulator.h @@ -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 MANIPULATOR_H_ #define MANIPULATOR_H_ diff --git a/source/designer/measure.cpp b/source/designer/measure.cpp index 82fca97..ee08ba7 100644 --- a/source/designer/measure.cpp +++ b/source/designer/measure.cpp @@ -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 +*/ + #include #include #include "designer.h" diff --git a/source/designer/measure.h b/source/designer/measure.h index 61a5a75..e4f230f 100644 --- a/source/designer/measure.h +++ b/source/designer/measure.h @@ -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 MEASURE_H_ #define MEASURE_H_ diff --git a/source/designer/selection.cpp b/source/designer/selection.cpp index ed71547..48f5b49 100644 --- a/source/designer/selection.cpp +++ b/source/designer/selection.cpp @@ -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 +*/ + #include #include "selection.h" diff --git a/source/designer/selection.h b/source/designer/selection.h index 1c0d267..802c6f2 100644 --- a/source/designer/selection.h +++ b/source/designer/selection.h @@ -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_ diff --git a/source/engineer/engineer.cpp b/source/engineer/engineer.cpp index 0d4f729..dc7c49c 100644 --- a/source/engineer/engineer.cpp +++ b/source/engineer/engineer.cpp @@ -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 +*/ + #include #include #include diff --git a/source/engineer/engineer.h b/source/engineer/engineer.h index f6e23bc..0c295bf 100644 --- a/source/engineer/engineer.h +++ b/source/engineer/engineer.h @@ -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 ENGINEER_H_ #define ENGINEER_H_ diff --git a/source/engineer/mainpanel.cpp b/source/engineer/mainpanel.cpp index 0178eb4..dd4d3f9 100644 --- a/source/engineer/mainpanel.cpp +++ b/source/engineer/mainpanel.cpp @@ -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 +*/ + #include #include "engineer.h" #include "mainpanel.h" diff --git a/source/engineer/mainpanel.h b/source/engineer/mainpanel.h index 3fff2bb..56dd494 100644 --- a/source/engineer/mainpanel.h +++ b/source/engineer/mainpanel.h @@ -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 MAINPANEL_H_ #define MAINPANEL_H_ diff --git a/source/engineer/trainpanel.cpp b/source/engineer/trainpanel.cpp index 8c23f26..9f3bf1a 100644 --- a/source/engineer/trainpanel.cpp +++ b/source/engineer/trainpanel.cpp @@ -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 +*/ + #include #include #include "libmarklin/locomotive.h" diff --git a/source/engineer/trainpanel.h b/source/engineer/trainpanel.h index 63e6e73..7cfaf8f 100644 --- a/source/engineer/trainpanel.h +++ b/source/engineer/trainpanel.h @@ -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 TRAINPANEL_H_ #define TRAINPANEL_H_ diff --git a/source/engineer/trainproperties.cpp b/source/engineer/trainproperties.cpp index 36f9325..9eaf8d3 100644 --- a/source/engineer/trainproperties.cpp +++ b/source/engineer/trainproperties.cpp @@ -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 +*/ + #include #include #include diff --git a/source/engineer/trainproperties.h b/source/engineer/trainproperties.h index 20ab334..62dc85a 100644 --- a/source/engineer/trainproperties.h +++ b/source/engineer/trainproperties.h @@ -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 TRAINPROPERTIES_H_ #define TRAINPROPERTIES_H_ diff --git a/source/libmarklin/block.cpp b/source/libmarklin/block.cpp index 3ca744c..a304a15 100644 --- a/source/libmarklin/block.cpp +++ b/source/libmarklin/block.cpp @@ -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 +*/ + #include "control.h" #include "block.h" #include "tracktype.h" diff --git a/source/libmarklin/block.h b/source/libmarklin/block.h index 568d173..bdbcc3f 100644 --- a/source/libmarklin/block.h +++ b/source/libmarklin/block.h @@ -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 MARKLIN_3D_BLOCK_H_ #define MARKLIN_3D_BLOCK_H_ diff --git a/source/libmarklin/catalogue.cpp b/source/libmarklin/catalogue.cpp index 3ab96a9..c8ed80c 100644 --- a/source/libmarklin/catalogue.cpp +++ b/source/libmarklin/catalogue.cpp @@ -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 +*/ + #include #include #include "catalogue.h" diff --git a/source/libmarklin/catalogue.h b/source/libmarklin/catalogue.h index 4179ea7..7ce3e73 100644 --- a/source/libmarklin/catalogue.h +++ b/source/libmarklin/catalogue.h @@ -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 LIBMARKLIN_CATALOGUE_H_ #define LIBMARKLIN_CATALOGUE_H_ diff --git a/source/libmarklin/command.cpp b/source/libmarklin/command.cpp index f953cbd..9530cba 100644 --- a/source/libmarklin/command.cpp +++ b/source/libmarklin/command.cpp @@ -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 +*/ + #include "command.h" using namespace std; diff --git a/source/libmarklin/command.h b/source/libmarklin/command.h index 4e4c986..6075ab2 100644 --- a/source/libmarklin/command.h +++ b/source/libmarklin/command.h @@ -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 COMMAND_H_ #define COMMAND_H_ diff --git a/source/libmarklin/constants.h b/source/libmarklin/constants.h index 52aa5ea..a61972d 100644 --- a/source/libmarklin/constants.h +++ b/source/libmarklin/constants.h @@ -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 ERROR_H_ #define ERROR_H_ diff --git a/source/libmarklin/control.cpp b/source/libmarklin/control.cpp index f51dbd0..ecf1034 100644 --- a/source/libmarklin/control.cpp +++ b/source/libmarklin/control.cpp @@ -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 +*/ + #include #include #include diff --git a/source/libmarklin/control.h b/source/libmarklin/control.h index df8ea1b..a911860 100644 --- a/source/libmarklin/control.h +++ b/source/libmarklin/control.h @@ -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 LIBMARKLIN_CONTROL_H_ #define LIBMARKLIN_CONTROL_H_ diff --git a/source/libmarklin/endpoint.h b/source/libmarklin/endpoint.h index 6a46831..34acdcd 100644 --- a/source/libmarklin/endpoint.h +++ b/source/libmarklin/endpoint.h @@ -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 MARKLIN_ENDPOINT_H_ #define MARKLIN_ENDPOINT_H_ diff --git a/source/libmarklin/geometry.h b/source/libmarklin/geometry.h index 4b0afc2..240bd89 100644 --- a/source/libmarklin/geometry.h +++ b/source/libmarklin/geometry.h @@ -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 LIBMARKLIN_GEOMETRY_H_ #define LIBMARKLIN_GEOMETRY_H_ diff --git a/source/libmarklin/layout.cpp b/source/libmarklin/layout.cpp index a197b35..470d573 100644 --- a/source/libmarklin/layout.cpp +++ b/source/libmarklin/layout.cpp @@ -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 +*/ + #include #include #include diff --git a/source/libmarklin/layout.h b/source/libmarklin/layout.h index d984e10..ada287c 100644 --- a/source/libmarklin/layout.h +++ b/source/libmarklin/layout.h @@ -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 LIBMARKLIN_LAYOUT_H_ #define LIBMARKLIN_LAYOUT_H_ diff --git a/source/libmarklin/locomotive.cpp b/source/libmarklin/locomotive.cpp index 530a111..87effa0 100644 --- a/source/libmarklin/locomotive.cpp +++ b/source/libmarklin/locomotive.cpp @@ -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 +*/ + #include #include #include "command.h" diff --git a/source/libmarklin/locomotive.h b/source/libmarklin/locomotive.h index a127a17..b8d58c2 100644 --- a/source/libmarklin/locomotive.h +++ b/source/libmarklin/locomotive.h @@ -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 LIBMARKLIN_LOCOMOTIVE_H_ #define LIBMARKLIN_LOCOMOTIVE_H_ diff --git a/source/libmarklin/locotype.cpp b/source/libmarklin/locotype.cpp index 31a995a..bfb7bc3 100644 --- a/source/libmarklin/locotype.cpp +++ b/source/libmarklin/locotype.cpp @@ -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 +*/ + #include "locotype.h" using namespace std; diff --git a/source/libmarklin/locotype.h b/source/libmarklin/locotype.h index bce5c57..190422e 100644 --- a/source/libmarklin/locotype.h +++ b/source/libmarklin/locotype.h @@ -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 LIBMARKLIN_LOCOTYPE_H_ #define LIBMARKLIN_LOCOTYPE_H_ diff --git a/source/libmarklin/route.cpp b/source/libmarklin/route.cpp index 9894398..7199fc9 100644 --- a/source/libmarklin/route.cpp +++ b/source/libmarklin/route.cpp @@ -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 +*/ + #include "route.h" namespace Marklin { diff --git a/source/libmarklin/route.h b/source/libmarklin/route.h index 6d2d710..f1f3664 100644 --- a/source/libmarklin/route.h +++ b/source/libmarklin/route.h @@ -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 LIBMARKLIN_ROUTE_H_ #define LIBMARKLIN_ROUTE_H_ diff --git a/source/libmarklin/sensor.cpp b/source/libmarklin/sensor.cpp index ff9594d..9b9b5f3 100644 --- a/source/libmarklin/sensor.cpp +++ b/source/libmarklin/sensor.cpp @@ -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 +*/ + #include #include #include "control.h" diff --git a/source/libmarklin/sensor.h b/source/libmarklin/sensor.h index 9dbb23c..930b15f 100644 --- a/source/libmarklin/sensor.h +++ b/source/libmarklin/sensor.h @@ -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 LIBMARKLIN_SENSOR_H_ #define LIBMARKLIN_SENSOR_H_ diff --git a/source/libmarklin/track.cpp b/source/libmarklin/track.cpp index 230b268..61f0d35 100644 --- a/source/libmarklin/track.cpp +++ b/source/libmarklin/track.cpp @@ -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 +*/ + #include #include "track.h" #include "tracktype.h" diff --git a/source/libmarklin/track.h b/source/libmarklin/track.h index 13a98bf..c434224 100644 --- a/source/libmarklin/track.h +++ b/source/libmarklin/track.h @@ -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 LIBMARKLIN_TRACK_H_ #define LIBMARKLIN_TRACK_H_ diff --git a/source/libmarklin/trackpart.cpp b/source/libmarklin/trackpart.cpp index 90bc30c..1ef6e75 100644 --- a/source/libmarklin/trackpart.cpp +++ b/source/libmarklin/trackpart.cpp @@ -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 +*/ + #include #include "trackpart.h" diff --git a/source/libmarklin/trackpart.h b/source/libmarklin/trackpart.h index 043dd0d..5aa4b0c 100644 --- a/source/libmarklin/trackpart.h +++ b/source/libmarklin/trackpart.h @@ -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 MARKLIN_TRACKPART_H_ #define MARKLIN_TRACKPART_H_ diff --git a/source/libmarklin/tracktype.cpp b/source/libmarklin/tracktype.cpp index cd832eb..0e84a31 100644 --- a/source/libmarklin/tracktype.cpp +++ b/source/libmarklin/tracktype.cpp @@ -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 +*/ + #include #include "tracktype.h" diff --git a/source/libmarklin/tracktype.h b/source/libmarklin/tracktype.h index df6ba02..310d17f 100644 --- a/source/libmarklin/tracktype.h +++ b/source/libmarklin/tracktype.h @@ -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 LIBMARKLIN_TRACKTYPE_H_ #define LIBMARKLIN_TRACKTYPE_H_ diff --git a/source/libmarklin/trafficmanager.cpp b/source/libmarklin/trafficmanager.cpp index 543c34a..29823ff 100644 --- a/source/libmarklin/trafficmanager.cpp +++ b/source/libmarklin/trafficmanager.cpp @@ -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 +*/ + #include #include "control.h" #include "layout.h" diff --git a/source/libmarklin/trafficmanager.h b/source/libmarklin/trafficmanager.h index a73e57c..293783f 100644 --- a/source/libmarklin/trafficmanager.h +++ b/source/libmarklin/trafficmanager.h @@ -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 LIBMARKLIN_TRAFFICMANAGER_H_ #define LIBMARKLIN_TRAFFICMANAGER_H_ diff --git a/source/libmarklin/train.cpp b/source/libmarklin/train.cpp index 2485c4c..a0943a7 100644 --- a/source/libmarklin/train.cpp +++ b/source/libmarklin/train.cpp @@ -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 +*/ + #include #include #include diff --git a/source/libmarklin/train.h b/source/libmarklin/train.h index 0b88d8a..a27ff8e 100644 --- a/source/libmarklin/train.h +++ b/source/libmarklin/train.h @@ -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 LIBMARKLIN_TRAIN_H_ #define LIBMARKLIN_TRAIN_H_ diff --git a/source/libmarklin/turnout.cpp b/source/libmarklin/turnout.cpp index 6f90d47..ace7976 100644 --- a/source/libmarklin/turnout.cpp +++ b/source/libmarklin/turnout.cpp @@ -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 +*/ + #include #include #include diff --git a/source/libmarklin/turnout.h b/source/libmarklin/turnout.h index dbb689e..0928ead 100644 --- a/source/libmarklin/turnout.h +++ b/source/libmarklin/turnout.h @@ -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 LIBMARKLIN_TURNOUT_H_ #define LIBMARKLIN_TURNOUT_H_ diff --git a/source/shoppinglist/main.cpp b/source/shoppinglist/main.cpp index 7a4f3ba..eac7e44 100644 --- a/source/shoppinglist/main.cpp +++ b/source/shoppinglist/main.cpp @@ -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 +*/ + #include #include #include diff --git a/tracks.dat b/tracks.dat index 75d36d9..b33e97b 100644 --- a/tracks.dat +++ b/tracks.dat @@ -1,3 +1,5 @@ +/* $Id$ */ + // Straight track 24064 -- 2.43.0