Add copyright headers
authoralpar
Mon, 30 Oct 2006 12:16:25 +0000
changeset 17495872af46fc4
parent 173 8339178ae43d
child 175 1e0a66d6b45a
Add copyright headers
algobox.cc
algobox.h
algowin.cc
algowin.h
all_include.h
design_win.cc
design_win.h
dijkstrabox.cc
dijkstrabox.h
file_chooser_extra_widget.cc
file_chooser_extra_widget.h
gdc-broken_edge.cc
graph-displayer.cc
graph_displayer_canvas-edge.cc
graph_displayer_canvas-event.cc
graph_displayer_canvas-node.cc
graph_displayer_canvas-zoom.cc
graph_displayer_canvas.cc
graph_displayer_canvas.h
gui_reader.cc
gui_reader.h
gui_writer.cc
gui_writer.h
kruskalbox.cc
kruskalbox.h
main_win.cc
main_win.h
map_win.cc
map_win.h
map_window.cc
map_window.h
mapselector.cc
mapselector.h
mapstorage.cc
mapstorage.h
nbtab.cc
nbtab.h
new_map_win.cc
new_map_win.h
xml.h
xymap.h
     1.1 --- a/algobox.cc	Wed Oct 25 17:50:02 2006 +0000
     1.2 +++ b/algobox.cc	Mon Oct 30 12:16:25 2006 +0000
     1.3 @@ -1,3 +1,21 @@
     1.4 +/* -*- C++ -*-
     1.5 + *
     1.6 + * This file is a part of LEMON, a generic C++ optimization library
     1.7 + *
     1.8 + * Copyright (C) 2003-2006
     1.9 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    1.10 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
    1.11 + *
    1.12 + * Permission to use, modify and distribute this software is granted
    1.13 + * provided that this copyright notice appears in all copies. For
    1.14 + * precise terms see the accompanying LICENSE file.
    1.15 + *
    1.16 + * This software is provided "AS IS" with no warranty of any kind,
    1.17 + * express or implied, and with no claim as to its suitability for any
    1.18 + * purpose.
    1.19 + *
    1.20 + */
    1.21 +
    1.22  #include <algobox.h>
    1.23  
    1.24  enum {N_DEMO1, N_DEMO2, NODE_INPUT_NUM}; // input IDs for nodes;
     2.1 --- a/algobox.h	Wed Oct 25 17:50:02 2006 +0000
     2.2 +++ b/algobox.h	Mon Oct 30 12:16:25 2006 +0000
     2.3 @@ -1,4 +1,20 @@
     2.4 -// -*- C++ -*- //
     2.5 +/* -*- C++ -*-
     2.6 + *
     2.7 + * This file is a part of LEMON, a generic C++ optimization library
     2.8 + *
     2.9 + * Copyright (C) 2003-2006
    2.10 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    2.11 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
    2.12 + *
    2.13 + * Permission to use, modify and distribute this software is granted
    2.14 + * provided that this copyright notice appears in all copies. For
    2.15 + * precise terms see the accompanying LICENSE file.
    2.16 + *
    2.17 + * This software is provided "AS IS" with no warranty of any kind,
    2.18 + * express or implied, and with no claim as to its suitability for any
    2.19 + * purpose.
    2.20 + *
    2.21 + */
    2.22  
    2.23  #ifndef ALGOBOX_H
    2.24  #define ALGOBOX_H
     3.1 --- a/algowin.cc	Wed Oct 25 17:50:02 2006 +0000
     3.2 +++ b/algowin.cc	Mon Oct 30 12:16:25 2006 +0000
     3.3 @@ -1,3 +1,21 @@
     3.4 +/* -*- C++ -*-
     3.5 + *
     3.6 + * This file is a part of LEMON, a generic C++ optimization library
     3.7 + *
     3.8 + * Copyright (C) 2003-2006
     3.9 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    3.10 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
    3.11 + *
    3.12 + * Permission to use, modify and distribute this software is granted
    3.13 + * provided that this copyright notice appears in all copies. For
    3.14 + * precise terms see the accompanying LICENSE file.
    3.15 + *
    3.16 + * This software is provided "AS IS" with no warranty of any kind,
    3.17 + * express or implied, and with no claim as to its suitability for any
    3.18 + * purpose.
    3.19 + *
    3.20 + */
    3.21 +
    3.22  #include <algowin.h>
    3.23  #include <kruskalbox.h>
    3.24  #include <dijkstrabox.h>
     4.1 --- a/algowin.h	Wed Oct 25 17:50:02 2006 +0000
     4.2 +++ b/algowin.h	Mon Oct 30 12:16:25 2006 +0000
     4.3 @@ -1,4 +1,20 @@
     4.4 -// -*- C++ -*- //
     4.5 +/* -*- C++ -*-
     4.6 + *
     4.7 + * This file is a part of LEMON, a generic C++ optimization library
     4.8 + *
     4.9 + * Copyright (C) 2003-2006
    4.10 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    4.11 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
    4.12 + *
    4.13 + * Permission to use, modify and distribute this software is granted
    4.14 + * provided that this copyright notice appears in all copies. For
    4.15 + * precise terms see the accompanying LICENSE file.
    4.16 + *
    4.17 + * This software is provided "AS IS" with no warranty of any kind,
    4.18 + * express or implied, and with no claim as to its suitability for any
    4.19 + * purpose.
    4.20 + *
    4.21 + */
    4.22  
    4.23  #ifndef ALGOWIN_H
    4.24  #define ALGOWIN_H
     5.1 --- a/all_include.h	Wed Oct 25 17:50:02 2006 +0000
     5.2 +++ b/all_include.h	Mon Oct 30 12:16:25 2006 +0000
     5.3 @@ -1,4 +1,20 @@
     5.4 -// -*- C++ -*- //
     5.5 +/* -*- C++ -*-
     5.6 + *
     5.7 + * This file is a part of LEMON, a generic C++ optimization library
     5.8 + *
     5.9 + * Copyright (C) 2003-2006
    5.10 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    5.11 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
    5.12 + *
    5.13 + * Permission to use, modify and distribute this software is granted
    5.14 + * provided that this copyright notice appears in all copies. For
    5.15 + * precise terms see the accompanying LICENSE file.
    5.16 + *
    5.17 + * This software is provided "AS IS" with no warranty of any kind,
    5.18 + * express or implied, and with no claim as to its suitability for any
    5.19 + * purpose.
    5.20 + *
    5.21 + */
    5.22  
    5.23  #ifndef ALL_INCLUDE_H
    5.24  #define ALL_INCLUDE_H
     6.1 --- a/design_win.cc	Wed Oct 25 17:50:02 2006 +0000
     6.2 +++ b/design_win.cc	Mon Oct 30 12:16:25 2006 +0000
     6.3 @@ -1,3 +1,21 @@
     6.4 +/* -*- C++ -*-
     6.5 + *
     6.6 + * This file is a part of LEMON, a generic C++ optimization library
     6.7 + *
     6.8 + * Copyright (C) 2003-2006
     6.9 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    6.10 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
    6.11 + *
    6.12 + * Permission to use, modify and distribute this software is granted
    6.13 + * provided that this copyright notice appears in all copies. For
    6.14 + * precise terms see the accompanying LICENSE file.
    6.15 + *
    6.16 + * This software is provided "AS IS" with no warranty of any kind,
    6.17 + * express or implied, and with no claim as to its suitability for any
    6.18 + * purpose.
    6.19 + *
    6.20 + */
    6.21 +
    6.22  #include <design_win.h>
    6.23  
    6.24  bool DesignWin::closeIfEscapeIsPressed(GdkEventKey* e)
     7.1 --- a/design_win.h	Wed Oct 25 17:50:02 2006 +0000
     7.2 +++ b/design_win.h	Mon Oct 30 12:16:25 2006 +0000
     7.3 @@ -1,4 +1,20 @@
     7.4 -// -*- C++ -*- //
     7.5 +/* -*- C++ -*-
     7.6 + *
     7.7 + * This file is a part of LEMON, a generic C++ optimization library
     7.8 + *
     7.9 + * Copyright (C) 2003-2006
    7.10 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    7.11 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
    7.12 + *
    7.13 + * Permission to use, modify and distribute this software is granted
    7.14 + * provided that this copyright notice appears in all copies. For
    7.15 + * precise terms see the accompanying LICENSE file.
    7.16 + *
    7.17 + * This software is provided "AS IS" with no warranty of any kind,
    7.18 + * express or implied, and with no claim as to its suitability for any
    7.19 + * purpose.
    7.20 + *
    7.21 + */
    7.22  
    7.23  #ifndef DESWIN_H
    7.24  #define DESWIN_H
     8.1 --- a/dijkstrabox.cc	Wed Oct 25 17:50:02 2006 +0000
     8.2 +++ b/dijkstrabox.cc	Mon Oct 30 12:16:25 2006 +0000
     8.3 @@ -1,3 +1,21 @@
     8.4 +/* -*- C++ -*-
     8.5 + *
     8.6 + * This file is a part of LEMON, a generic C++ optimization library
     8.7 + *
     8.8 + * Copyright (C) 2003-2006
     8.9 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    8.10 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
    8.11 + *
    8.12 + * Permission to use, modify and distribute this software is granted
    8.13 + * provided that this copyright notice appears in all copies. For
    8.14 + * precise terms see the accompanying LICENSE file.
    8.15 + *
    8.16 + * This software is provided "AS IS" with no warranty of any kind,
    8.17 + * express or implied, and with no claim as to its suitability for any
    8.18 + * purpose.
    8.19 + *
    8.20 + */
    8.21 +
    8.22  #include <dijkstrabox.h>
    8.23  #include <lemon/dijkstra.h>
    8.24  #include <lemon/suurballe.h>
     9.1 --- a/dijkstrabox.h	Wed Oct 25 17:50:02 2006 +0000
     9.2 +++ b/dijkstrabox.h	Mon Oct 30 12:16:25 2006 +0000
     9.3 @@ -1,4 +1,20 @@
     9.4 -// -*- C++ -*- //
     9.5 +/* -*- C++ -*-
     9.6 + *
     9.7 + * This file is a part of LEMON, a generic C++ optimization library
     9.8 + *
     9.9 + * Copyright (C) 2003-2006
    9.10 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    9.11 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
    9.12 + *
    9.13 + * Permission to use, modify and distribute this software is granted
    9.14 + * provided that this copyright notice appears in all copies. For
    9.15 + * precise terms see the accompanying LICENSE file.
    9.16 + *
    9.17 + * This software is provided "AS IS" with no warranty of any kind,
    9.18 + * express or implied, and with no claim as to its suitability for any
    9.19 + * purpose.
    9.20 + *
    9.21 + */
    9.22  
    9.23  #ifndef DIJKSTRABOX_H
    9.24  #define DIJKSTRABOX_H
    10.1 --- a/file_chooser_extra_widget.cc	Wed Oct 25 17:50:02 2006 +0000
    10.2 +++ b/file_chooser_extra_widget.cc	Mon Oct 30 12:16:25 2006 +0000
    10.3 @@ -1,3 +1,21 @@
    10.4 +/* -*- C++ -*-
    10.5 + *
    10.6 + * This file is a part of LEMON, a generic C++ optimization library
    10.7 + *
    10.8 + * Copyright (C) 2003-2006
    10.9 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   10.10 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   10.11 + *
   10.12 + * Permission to use, modify and distribute this software is granted
   10.13 + * provided that this copyright notice appears in all copies. For
   10.14 + * precise terms see the accompanying LICENSE file.
   10.15 + *
   10.16 + * This software is provided "AS IS" with no warranty of any kind,
   10.17 + * express or implied, and with no claim as to its suitability for any
   10.18 + * purpose.
   10.19 + *
   10.20 + */
   10.21 +
   10.22  #include "file_chooser_extra_widget.h"
   10.23  #include "mapstorage.h"
   10.24  
    11.1 --- a/file_chooser_extra_widget.h	Wed Oct 25 17:50:02 2006 +0000
    11.2 +++ b/file_chooser_extra_widget.h	Mon Oct 30 12:16:25 2006 +0000
    11.3 @@ -1,3 +1,21 @@
    11.4 +/* -*- C++ -*-
    11.5 + *
    11.6 + * This file is a part of LEMON, a generic C++ optimization library
    11.7 + *
    11.8 + * Copyright (C) 2003-2006
    11.9 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   11.10 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   11.11 + *
   11.12 + * Permission to use, modify and distribute this software is granted
   11.13 + * provided that this copyright notice appears in all copies. For
   11.14 + * precise terms see the accompanying LICENSE file.
   11.15 + *
   11.16 + * This software is provided "AS IS" with no warranty of any kind,
   11.17 + * express or implied, and with no claim as to its suitability for any
   11.18 + * purpose.
   11.19 + *
   11.20 + */
   11.21 +
   11.22  #ifndef FILE_CHOOSER_EXTRA_WIDGET
   11.23  #define FILE_CHOOSER_EXTRA_WIDGET
   11.24  
    12.1 --- a/gdc-broken_edge.cc	Wed Oct 25 17:50:02 2006 +0000
    12.2 +++ b/gdc-broken_edge.cc	Mon Oct 30 12:16:25 2006 +0000
    12.3 @@ -1,3 +1,21 @@
    12.4 +/* -*- C++ -*-
    12.5 + *
    12.6 + * This file is a part of LEMON, a generic C++ optimization library
    12.7 + *
    12.8 + * Copyright (C) 2003-2006
    12.9 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   12.10 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   12.11 + *
   12.12 + * Permission to use, modify and distribute this software is granted
   12.13 + * provided that this copyright notice appears in all copies. For
   12.14 + * precise terms see the accompanying LICENSE file.
   12.15 + *
   12.16 + * This software is provided "AS IS" with no warranty of any kind,
   12.17 + * express or implied, and with no claim as to its suitability for any
   12.18 + * purpose.
   12.19 + *
   12.20 + */
   12.21 +
   12.22  #include "graph_displayer_canvas.h"
   12.23  #include <cmath>
   12.24  
    13.1 --- a/graph-displayer.cc	Wed Oct 25 17:50:02 2006 +0000
    13.2 +++ b/graph-displayer.cc	Mon Oct 30 12:16:25 2006 +0000
    13.3 @@ -1,3 +1,21 @@
    13.4 +/* -*- C++ -*-
    13.5 + *
    13.6 + * This file is a part of LEMON, a generic C++ optimization library
    13.7 + *
    13.8 + * Copyright (C) 2003-2006
    13.9 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   13.10 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   13.11 + *
   13.12 + * Permission to use, modify and distribute this software is granted
   13.13 + * provided that this copyright notice appears in all copies. For
   13.14 + * precise terms see the accompanying LICENSE file.
   13.15 + *
   13.16 + * This software is provided "AS IS" with no warranty of any kind,
   13.17 + * express or implied, and with no claim as to its suitability for any
   13.18 + * purpose.
   13.19 + *
   13.20 + */
   13.21 +
   13.22  #ifdef HAVE_CONFIG_H
   13.23  #include <config.h>
   13.24  #endif
    14.1 --- a/graph_displayer_canvas-edge.cc	Wed Oct 25 17:50:02 2006 +0000
    14.2 +++ b/graph_displayer_canvas-edge.cc	Mon Oct 30 12:16:25 2006 +0000
    14.3 @@ -1,3 +1,21 @@
    14.4 +/* -*- C++ -*-
    14.5 + *
    14.6 + * This file is a part of LEMON, a generic C++ optimization library
    14.7 + *
    14.8 + * Copyright (C) 2003-2006
    14.9 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   14.10 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   14.11 + *
   14.12 + * Permission to use, modify and distribute this software is granted
   14.13 + * provided that this copyright notice appears in all copies. For
   14.14 + * precise terms see the accompanying LICENSE file.
   14.15 + *
   14.16 + * This software is provided "AS IS" with no warranty of any kind,
   14.17 + * express or implied, and with no claim as to its suitability for any
   14.18 + * purpose.
   14.19 + *
   14.20 + */
   14.21 +
   14.22  #include "graph_displayer_canvas.h"
   14.23  #include <cmath>
   14.24  
    15.1 --- a/graph_displayer_canvas-event.cc	Wed Oct 25 17:50:02 2006 +0000
    15.2 +++ b/graph_displayer_canvas-event.cc	Mon Oct 30 12:16:25 2006 +0000
    15.3 @@ -1,3 +1,21 @@
    15.4 +/* -*- C++ -*-
    15.5 + *
    15.6 + * This file is a part of LEMON, a generic C++ optimization library
    15.7 + *
    15.8 + * Copyright (C) 2003-2006
    15.9 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   15.10 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   15.11 + *
   15.12 + * Permission to use, modify and distribute this software is granted
   15.13 + * provided that this copyright notice appears in all copies. For
   15.14 + * precise terms see the accompanying LICENSE file.
   15.15 + *
   15.16 + * This software is provided "AS IS" with no warranty of any kind,
   15.17 + * express or implied, and with no claim as to its suitability for any
   15.18 + * purpose.
   15.19 + *
   15.20 + */
   15.21 +
   15.22  #include "graph_displayer_canvas.h"
   15.23  #include <cmath>
   15.24  
    16.1 --- a/graph_displayer_canvas-node.cc	Wed Oct 25 17:50:02 2006 +0000
    16.2 +++ b/graph_displayer_canvas-node.cc	Mon Oct 30 12:16:25 2006 +0000
    16.3 @@ -1,3 +1,21 @@
    16.4 +/* -*- C++ -*-
    16.5 + *
    16.6 + * This file is a part of LEMON, a generic C++ optimization library
    16.7 + *
    16.8 + * Copyright (C) 2003-2006
    16.9 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   16.10 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   16.11 + *
   16.12 + * Permission to use, modify and distribute this software is granted
   16.13 + * provided that this copyright notice appears in all copies. For
   16.14 + * precise terms see the accompanying LICENSE file.
   16.15 + *
   16.16 + * This software is provided "AS IS" with no warranty of any kind,
   16.17 + * express or implied, and with no claim as to its suitability for any
   16.18 + * purpose.
   16.19 + *
   16.20 + */
   16.21 +
   16.22  #include "graph_displayer_canvas.h"
   16.23  #include <cmath>
   16.24  
    17.1 --- a/graph_displayer_canvas-zoom.cc	Wed Oct 25 17:50:02 2006 +0000
    17.2 +++ b/graph_displayer_canvas-zoom.cc	Mon Oct 30 12:16:25 2006 +0000
    17.3 @@ -1,3 +1,21 @@
    17.4 +/* -*- C++ -*-
    17.5 + *
    17.6 + * This file is a part of LEMON, a generic C++ optimization library
    17.7 + *
    17.8 + * Copyright (C) 2003-2006
    17.9 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   17.10 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   17.11 + *
   17.12 + * Permission to use, modify and distribute this software is granted
   17.13 + * provided that this copyright notice appears in all copies. For
   17.14 + * precise terms see the accompanying LICENSE file.
   17.15 + *
   17.16 + * This software is provided "AS IS" with no warranty of any kind,
   17.17 + * express or implied, and with no claim as to its suitability for any
   17.18 + * purpose.
   17.19 + *
   17.20 + */
   17.21 +
   17.22  #include "graph_displayer_canvas.h"
   17.23  #include <cmath>
   17.24  
    18.1 --- a/graph_displayer_canvas.cc	Wed Oct 25 17:50:02 2006 +0000
    18.2 +++ b/graph_displayer_canvas.cc	Mon Oct 30 12:16:25 2006 +0000
    18.3 @@ -1,3 +1,21 @@
    18.4 +/* -*- C++ -*-
    18.5 + *
    18.6 + * This file is a part of LEMON, a generic C++ optimization library
    18.7 + *
    18.8 + * Copyright (C) 2003-2006
    18.9 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   18.10 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   18.11 + *
   18.12 + * Permission to use, modify and distribute this software is granted
   18.13 + * provided that this copyright notice appears in all copies. For
   18.14 + * precise terms see the accompanying LICENSE file.
   18.15 + *
   18.16 + * This software is provided "AS IS" with no warranty of any kind,
   18.17 + * express or implied, and with no claim as to its suitability for any
   18.18 + * purpose.
   18.19 + *
   18.20 + */
   18.21 +
   18.22  #include "graph_displayer_canvas.h"
   18.23  #include <lemon/random.h>
   18.24  #include <cmath>
    19.1 --- a/graph_displayer_canvas.h	Wed Oct 25 17:50:02 2006 +0000
    19.2 +++ b/graph_displayer_canvas.h	Mon Oct 30 12:16:25 2006 +0000
    19.3 @@ -1,4 +1,20 @@
    19.4 -// -*- C++ -*- //
    19.5 +/* -*- C++ -*-
    19.6 + *
    19.7 + * This file is a part of LEMON, a generic C++ optimization library
    19.8 + *
    19.9 + * Copyright (C) 2003-2006
   19.10 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   19.11 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   19.12 + *
   19.13 + * Permission to use, modify and distribute this software is granted
   19.14 + * provided that this copyright notice appears in all copies. For
   19.15 + * precise terms see the accompanying LICENSE file.
   19.16 + *
   19.17 + * This software is provided "AS IS" with no warranty of any kind,
   19.18 + * express or implied, and with no claim as to its suitability for any
   19.19 + * purpose.
   19.20 + *
   19.21 + */
   19.22  
   19.23  #ifndef GRAPH_DISPLAYER_CANVAS_H
   19.24  #define GRAPH_DISPLAYER_CANVAS_H
    20.1 --- a/gui_reader.cc	Wed Oct 25 17:50:02 2006 +0000
    20.2 +++ b/gui_reader.cc	Mon Oct 30 12:16:25 2006 +0000
    20.3 @@ -1,3 +1,21 @@
    20.4 +/* -*- C++ -*-
    20.5 + *
    20.6 + * This file is a part of LEMON, a generic C++ optimization library
    20.7 + *
    20.8 + * Copyright (C) 2003-2006
    20.9 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   20.10 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   20.11 + *
   20.12 + * Permission to use, modify and distribute this software is granted
   20.13 + * provided that this copyright notice appears in all copies. For
   20.14 + * precise terms see the accompanying LICENSE file.
   20.15 + *
   20.16 + * This software is provided "AS IS" with no warranty of any kind,
   20.17 + * express or implied, and with no claim as to its suitability for any
   20.18 + * purpose.
   20.19 + *
   20.20 + */
   20.21 +
   20.22  #include "gui_reader.h"
   20.23  #include "xml.h"
   20.24  #include "mapstorage.h"
    21.1 --- a/gui_reader.h	Wed Oct 25 17:50:02 2006 +0000
    21.2 +++ b/gui_reader.h	Mon Oct 30 12:16:25 2006 +0000
    21.3 @@ -1,3 +1,21 @@
    21.4 +/* -*- C++ -*-
    21.5 + *
    21.6 + * This file is a part of LEMON, a generic C++ optimization library
    21.7 + *
    21.8 + * Copyright (C) 2003-2006
    21.9 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   21.10 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   21.11 + *
   21.12 + * Permission to use, modify and distribute this software is granted
   21.13 + * provided that this copyright notice appears in all copies. For
   21.14 + * precise terms see the accompanying LICENSE file.
   21.15 + *
   21.16 + * This software is provided "AS IS" with no warranty of any kind,
   21.17 + * express or implied, and with no claim as to its suitability for any
   21.18 + * purpose.
   21.19 + *
   21.20 + */
   21.21 +
   21.22  #ifndef GUI_READER_H
   21.23  #define GUI_READER_H
   21.24  
    22.1 --- a/gui_writer.cc	Wed Oct 25 17:50:02 2006 +0000
    22.2 +++ b/gui_writer.cc	Mon Oct 30 12:16:25 2006 +0000
    22.3 @@ -1,3 +1,21 @@
    22.4 +/* -*- C++ -*-
    22.5 + *
    22.6 + * This file is a part of LEMON, a generic C++ optimization library
    22.7 + *
    22.8 + * Copyright (C) 2003-2006
    22.9 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   22.10 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   22.11 + *
   22.12 + * Permission to use, modify and distribute this software is granted
   22.13 + * provided that this copyright notice appears in all copies. For
   22.14 + * precise terms see the accompanying LICENSE file.
   22.15 + *
   22.16 + * This software is provided "AS IS" with no warranty of any kind,
   22.17 + * express or implied, and with no claim as to its suitability for any
   22.18 + * purpose.
   22.19 + *
   22.20 + */
   22.21 +
   22.22  #include "gui_writer.h"
   22.23  #include "xml.h"
   22.24  #include "mapstorage.h"
    23.1 --- a/gui_writer.h	Wed Oct 25 17:50:02 2006 +0000
    23.2 +++ b/gui_writer.h	Mon Oct 30 12:16:25 2006 +0000
    23.3 @@ -1,3 +1,21 @@
    23.4 +/* -*- C++ -*-
    23.5 + *
    23.6 + * This file is a part of LEMON, a generic C++ optimization library
    23.7 + *
    23.8 + * Copyright (C) 2003-2006
    23.9 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   23.10 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   23.11 + *
   23.12 + * Permission to use, modify and distribute this software is granted
   23.13 + * provided that this copyright notice appears in all copies. For
   23.14 + * precise terms see the accompanying LICENSE file.
   23.15 + *
   23.16 + * This software is provided "AS IS" with no warranty of any kind,
   23.17 + * express or implied, and with no claim as to its suitability for any
   23.18 + * purpose.
   23.19 + *
   23.20 + */
   23.21 +
   23.22  #ifndef GUI_WRITER_H
   23.23  #define GUI_WRITER_H
   23.24  
    24.1 --- a/kruskalbox.cc	Wed Oct 25 17:50:02 2006 +0000
    24.2 +++ b/kruskalbox.cc	Mon Oct 30 12:16:25 2006 +0000
    24.3 @@ -1,3 +1,21 @@
    24.4 +/* -*- C++ -*-
    24.5 + *
    24.6 + * This file is a part of LEMON, a generic C++ optimization library
    24.7 + *
    24.8 + * Copyright (C) 2003-2006
    24.9 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   24.10 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   24.11 + *
   24.12 + * Permission to use, modify and distribute this software is granted
   24.13 + * provided that this copyright notice appears in all copies. For
   24.14 + * precise terms see the accompanying LICENSE file.
   24.15 + *
   24.16 + * This software is provided "AS IS" with no warranty of any kind,
   24.17 + * express or implied, and with no claim as to its suitability for any
   24.18 + * purpose.
   24.19 + *
   24.20 + */
   24.21 +
   24.22  #include <kruskalbox.h>
   24.23  
   24.24  enum {INPUT, OUTPUT, MAP_NUM};
    25.1 --- a/kruskalbox.h	Wed Oct 25 17:50:02 2006 +0000
    25.2 +++ b/kruskalbox.h	Mon Oct 30 12:16:25 2006 +0000
    25.3 @@ -1,4 +1,20 @@
    25.4 -// -*- C++ -*- //
    25.5 +/* -*- C++ -*-
    25.6 + *
    25.7 + * This file is a part of LEMON, a generic C++ optimization library
    25.8 + *
    25.9 + * Copyright (C) 2003-2006
   25.10 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   25.11 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   25.12 + *
   25.13 + * Permission to use, modify and distribute this software is granted
   25.14 + * provided that this copyright notice appears in all copies. For
   25.15 + * precise terms see the accompanying LICENSE file.
   25.16 + *
   25.17 + * This software is provided "AS IS" with no warranty of any kind,
   25.18 + * express or implied, and with no claim as to its suitability for any
   25.19 + * purpose.
   25.20 + *
   25.21 + */
   25.22  
   25.23  #ifndef KRUSKALBOX_H
   25.24  #define KRUSKALBOX_H
    26.1 --- a/main_win.cc	Wed Oct 25 17:50:02 2006 +0000
    26.2 +++ b/main_win.cc	Mon Oct 30 12:16:25 2006 +0000
    26.3 @@ -1,3 +1,21 @@
    26.4 +/* -*- C++ -*-
    26.5 + *
    26.6 + * This file is a part of LEMON, a generic C++ optimization library
    26.7 + *
    26.8 + * Copyright (C) 2003-2006
    26.9 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   26.10 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   26.11 + *
   26.12 + * Permission to use, modify and distribute this software is granted
   26.13 + * provided that this copyright notice appears in all copies. For
   26.14 + * precise terms see the accompanying LICENSE file.
   26.15 + *
   26.16 + * This software is provided "AS IS" with no warranty of any kind,
   26.17 + * express or implied, and with no claim as to its suitability for any
   26.18 + * purpose.
   26.19 + *
   26.20 + */
   26.21 +
   26.22  #ifdef HAVE_CONFIG_H
   26.23  #include <config.h>
   26.24  #endif
    27.1 --- a/main_win.h	Wed Oct 25 17:50:02 2006 +0000
    27.2 +++ b/main_win.h	Mon Oct 30 12:16:25 2006 +0000
    27.3 @@ -1,4 +1,20 @@
    27.4 -// -*- C++ -*- //
    27.5 +/* -*- C++ -*-
    27.6 + *
    27.7 + * This file is a part of LEMON, a generic C++ optimization library
    27.8 + *
    27.9 + * Copyright (C) 2003-2006
   27.10 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   27.11 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   27.12 + *
   27.13 + * Permission to use, modify and distribute this software is granted
   27.14 + * provided that this copyright notice appears in all copies. For
   27.15 + * precise terms see the accompanying LICENSE file.
   27.16 + *
   27.17 + * This software is provided "AS IS" with no warranty of any kind,
   27.18 + * express or implied, and with no claim as to its suitability for any
   27.19 + * purpose.
   27.20 + *
   27.21 + */
   27.22  
   27.23  #ifndef MAIN_WIN_H
   27.24  #define MAIN_WIN_H
    28.1 --- a/map_win.cc	Wed Oct 25 17:50:02 2006 +0000
    28.2 +++ b/map_win.cc	Mon Oct 30 12:16:25 2006 +0000
    28.3 @@ -1,3 +1,21 @@
    28.4 +/* -*- C++ -*-
    28.5 + *
    28.6 + * This file is a part of LEMON, a generic C++ optimization library
    28.7 + *
    28.8 + * Copyright (C) 2003-2006
    28.9 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   28.10 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   28.11 + *
   28.12 + * Permission to use, modify and distribute this software is granted
   28.13 + * provided that this copyright notice appears in all copies. For
   28.14 + * precise terms see the accompanying LICENSE file.
   28.15 + *
   28.16 + * This software is provided "AS IS" with no warranty of any kind,
   28.17 + * express or implied, and with no claim as to its suitability for any
   28.18 + * purpose.
   28.19 + *
   28.20 + */
   28.21 +
   28.22  #include "map_win.h"
   28.23  #include <set>
   28.24  
    29.1 --- a/map_win.h	Wed Oct 25 17:50:02 2006 +0000
    29.2 +++ b/map_win.h	Mon Oct 30 12:16:25 2006 +0000
    29.3 @@ -1,4 +1,20 @@
    29.4 -// -*- C++ -*- //
    29.5 +/* -*- C++ -*-
    29.6 + *
    29.7 + * This file is a part of LEMON, a generic C++ optimization library
    29.8 + *
    29.9 + * Copyright (C) 2003-2006
   29.10 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   29.11 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   29.12 + *
   29.13 + * Permission to use, modify and distribute this software is granted
   29.14 + * provided that this copyright notice appears in all copies. For
   29.15 + * precise terms see the accompanying LICENSE file.
   29.16 + *
   29.17 + * This software is provided "AS IS" with no warranty of any kind,
   29.18 + * express or implied, and with no claim as to its suitability for any
   29.19 + * purpose.
   29.20 + *
   29.21 + */
   29.22  
   29.23  #ifndef MAP_WIN_H
   29.24  #define MAP_WIN_H
    30.1 --- a/map_window.cc	Wed Oct 25 17:50:02 2006 +0000
    30.2 +++ b/map_window.cc	Mon Oct 30 12:16:25 2006 +0000
    30.3 @@ -1,3 +1,21 @@
    30.4 +/* -*- C++ -*-
    30.5 + *
    30.6 + * This file is a part of LEMON, a generic C++ optimization library
    30.7 + *
    30.8 + * Copyright (C) 2003-2006
    30.9 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   30.10 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   30.11 + *
   30.12 + * Permission to use, modify and distribute this software is granted
   30.13 + * provided that this copyright notice appears in all copies. For
   30.14 + * precise terms see the accompanying LICENSE file.
   30.15 + *
   30.16 + * This software is provided "AS IS" with no warranty of any kind,
   30.17 + * express or implied, and with no claim as to its suitability for any
   30.18 + * purpose.
   30.19 + *
   30.20 + */
   30.21 +
   30.22  #include "map_window.h"
   30.23  
   30.24  MapWindow::MapWindow()
    31.1 --- a/map_window.h	Wed Oct 25 17:50:02 2006 +0000
    31.2 +++ b/map_window.h	Mon Oct 30 12:16:25 2006 +0000
    31.3 @@ -1,3 +1,21 @@
    31.4 +/* -*- C++ -*-
    31.5 + *
    31.6 + * This file is a part of LEMON, a generic C++ optimization library
    31.7 + *
    31.8 + * Copyright (C) 2003-2006
    31.9 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   31.10 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   31.11 + *
   31.12 + * Permission to use, modify and distribute this software is granted
   31.13 + * provided that this copyright notice appears in all copies. For
   31.14 + * precise terms see the accompanying LICENSE file.
   31.15 + *
   31.16 + * This software is provided "AS IS" with no warranty of any kind,
   31.17 + * express or implied, and with no claim as to its suitability for any
   31.18 + * purpose.
   31.19 + *
   31.20 + */
   31.21 +
   31.22  #ifndef MAP_WINDOW
   31.23  #define MAP_WINDOW
   31.24  
    32.1 --- a/mapselector.cc	Wed Oct 25 17:50:02 2006 +0000
    32.2 +++ b/mapselector.cc	Mon Oct 30 12:16:25 2006 +0000
    32.3 @@ -1,3 +1,21 @@
    32.4 +/* -*- C++ -*-
    32.5 + *
    32.6 + * This file is a part of LEMON, a generic C++ optimization library
    32.7 + *
    32.8 + * Copyright (C) 2003-2006
    32.9 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   32.10 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   32.11 + *
   32.12 + * Permission to use, modify and distribute this software is granted
   32.13 + * provided that this copyright notice appears in all copies. For
   32.14 + * precise terms see the accompanying LICENSE file.
   32.15 + *
   32.16 + * This software is provided "AS IS" with no warranty of any kind,
   32.17 + * express or implied, and with no claim as to its suitability for any
   32.18 + * purpose.
   32.19 + *
   32.20 + */
   32.21 +
   32.22  #include "mapselector.h"
   32.23  
   32.24  MapSelector::MapSelector(std::vector<std::string> ml, std::string act, std::string labeltext, bool edge, bool d):def(d),itisedge(edge),set_new_map(false)
    33.1 --- a/mapselector.h	Wed Oct 25 17:50:02 2006 +0000
    33.2 +++ b/mapselector.h	Mon Oct 30 12:16:25 2006 +0000
    33.3 @@ -1,4 +1,20 @@
    33.4 -// -*- C++ -*- //
    33.5 +/* -*- C++ -*-
    33.6 + *
    33.7 + * This file is a part of LEMON, a generic C++ optimization library
    33.8 + *
    33.9 + * Copyright (C) 2003-2006
   33.10 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   33.11 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   33.12 + *
   33.13 + * Permission to use, modify and distribute this software is granted
   33.14 + * provided that this copyright notice appears in all copies. For
   33.15 + * precise terms see the accompanying LICENSE file.
   33.16 + *
   33.17 + * This software is provided "AS IS" with no warranty of any kind,
   33.18 + * express or implied, and with no claim as to its suitability for any
   33.19 + * purpose.
   33.20 + *
   33.21 + */
   33.22  
   33.23  #ifndef MAPSELECTOR_H
   33.24  #define MAPSELECTOR_H
    34.1 --- a/mapstorage.cc	Wed Oct 25 17:50:02 2006 +0000
    34.2 +++ b/mapstorage.cc	Mon Oct 30 12:16:25 2006 +0000
    34.3 @@ -1,3 +1,21 @@
    34.4 +/* -*- C++ -*-
    34.5 + *
    34.6 + * This file is a part of LEMON, a generic C++ optimization library
    34.7 + *
    34.8 + * Copyright (C) 2003-2006
    34.9 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   34.10 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   34.11 + *
   34.12 + * Permission to use, modify and distribute this software is granted
   34.13 + * provided that this copyright notice appears in all copies. For
   34.14 + * precise terms see the accompanying LICENSE file.
   34.15 + *
   34.16 + * This software is provided "AS IS" with no warranty of any kind,
   34.17 + * express or implied, and with no claim as to its suitability for any
   34.18 + * purpose.
   34.19 + *
   34.20 + */
   34.21 +
   34.22  #include "mapstorage.h"
   34.23  #include "gui_writer.h"
   34.24  #include "gui_reader.h"
    35.1 --- a/mapstorage.h	Wed Oct 25 17:50:02 2006 +0000
    35.2 +++ b/mapstorage.h	Mon Oct 30 12:16:25 2006 +0000
    35.3 @@ -1,4 +1,20 @@
    35.4 -// -*- C++ -*- //
    35.5 +/* -*- C++ -*-
    35.6 + *
    35.7 + * This file is a part of LEMON, a generic C++ optimization library
    35.8 + *
    35.9 + * Copyright (C) 2003-2006
   35.10 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   35.11 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   35.12 + *
   35.13 + * Permission to use, modify and distribute this software is granted
   35.14 + * provided that this copyright notice appears in all copies. For
   35.15 + * precise terms see the accompanying LICENSE file.
   35.16 + *
   35.17 + * This software is provided "AS IS" with no warranty of any kind,
   35.18 + * express or implied, and with no claim as to its suitability for any
   35.19 + * purpose.
   35.20 + *
   35.21 + */
   35.22  
   35.23  #ifndef MAPSTORAGE_H
   35.24  #define MAPSTORAGE_H
    36.1 --- a/nbtab.cc	Wed Oct 25 17:50:02 2006 +0000
    36.2 +++ b/nbtab.cc	Mon Oct 30 12:16:25 2006 +0000
    36.3 @@ -1,3 +1,21 @@
    36.4 +/* -*- C++ -*-
    36.5 + *
    36.6 + * This file is a part of LEMON, a generic C++ optimization library
    36.7 + *
    36.8 + * Copyright (C) 2003-2006
    36.9 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   36.10 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   36.11 + *
   36.12 + * Permission to use, modify and distribute this software is granted
   36.13 + * provided that this copyright notice appears in all copies. For
   36.14 + * precise terms see the accompanying LICENSE file.
   36.15 + *
   36.16 + * This software is provided "AS IS" with no warranty of any kind,
   36.17 + * express or implied, and with no claim as to its suitability for any
   36.18 + * purpose.
   36.19 + *
   36.20 + */
   36.21 +
   36.22  #include <nbtab.h>
   36.23  #include "file_chooser_extra_widget.h"
   36.24  
    37.1 --- a/nbtab.h	Wed Oct 25 17:50:02 2006 +0000
    37.2 +++ b/nbtab.h	Mon Oct 30 12:16:25 2006 +0000
    37.3 @@ -1,4 +1,20 @@
    37.4 -// -*- C++ -*- //
    37.5 +/* -*- C++ -*-
    37.6 + *
    37.7 + * This file is a part of LEMON, a generic C++ optimization library
    37.8 + *
    37.9 + * Copyright (C) 2003-2006
   37.10 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   37.11 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   37.12 + *
   37.13 + * Permission to use, modify and distribute this software is granted
   37.14 + * provided that this copyright notice appears in all copies. For
   37.15 + * precise terms see the accompanying LICENSE file.
   37.16 + *
   37.17 + * This software is provided "AS IS" with no warranty of any kind,
   37.18 + * express or implied, and with no claim as to its suitability for any
   37.19 + * purpose.
   37.20 + *
   37.21 + */
   37.22  
   37.23  #ifndef NBTAB_H
   37.24  #define NBTAB_H
    38.1 --- a/new_map_win.cc	Wed Oct 25 17:50:02 2006 +0000
    38.2 +++ b/new_map_win.cc	Mon Oct 30 12:16:25 2006 +0000
    38.3 @@ -1,3 +1,21 @@
    38.4 +/* -*- C++ -*-
    38.5 + *
    38.6 + * This file is a part of LEMON, a generic C++ optimization library
    38.7 + *
    38.8 + * Copyright (C) 2003-2006
    38.9 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   38.10 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   38.11 + *
   38.12 + * Permission to use, modify and distribute this software is granted
   38.13 + * provided that this copyright notice appears in all copies. For
   38.14 + * precise terms see the accompanying LICENSE file.
   38.15 + *
   38.16 + * This software is provided "AS IS" with no warranty of any kind,
   38.17 + * express or implied, and with no claim as to its suitability for any
   38.18 + * purpose.
   38.19 + *
   38.20 + */
   38.21 +
   38.22  #include <new_map_win.h>
   38.23  
   38.24  bool NewMapWin::closeIfEscapeIsPressed(GdkEventKey* e)
    39.1 --- a/new_map_win.h	Wed Oct 25 17:50:02 2006 +0000
    39.2 +++ b/new_map_win.h	Mon Oct 30 12:16:25 2006 +0000
    39.3 @@ -1,4 +1,20 @@
    39.4 -// -*- C++ -*- //
    39.5 +/* -*- C++ -*-
    39.6 + *
    39.7 + * This file is a part of LEMON, a generic C++ optimization library
    39.8 + *
    39.9 + * Copyright (C) 2003-2006
   39.10 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   39.11 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   39.12 + *
   39.13 + * Permission to use, modify and distribute this software is granted
   39.14 + * provided that this copyright notice appears in all copies. For
   39.15 + * precise terms see the accompanying LICENSE file.
   39.16 + *
   39.17 + * This software is provided "AS IS" with no warranty of any kind,
   39.18 + * express or implied, and with no claim as to its suitability for any
   39.19 + * purpose.
   39.20 + *
   39.21 + */
   39.22  
   39.23  #ifndef NEWMAPWIN_H
   39.24  #define NEWMAPWIN_H
    40.1 --- a/xml.h	Wed Oct 25 17:50:02 2006 +0000
    40.2 +++ b/xml.h	Mon Oct 30 12:16:25 2006 +0000
    40.3 @@ -1,7 +1,9 @@
    40.4  /* -*- C++ -*-
    40.5 - * gui/xml.h - Part of LEMON, a generic C++ optimization library
    40.6   *
    40.7 - * Copyright (C) 2006 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    40.8 + * This file is a part of LEMON, a generic C++ optimization library
    40.9 + *
   40.10 + * Copyright (C) 2003-2006
   40.11 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   40.12   * (Egervary Research Group on Combinatorial Optimization, EGRES).
   40.13   *
   40.14   * Permission to use, modify and distribute this software is granted
    41.1 --- a/xymap.h	Wed Oct 25 17:50:02 2006 +0000
    41.2 +++ b/xymap.h	Mon Oct 30 12:16:25 2006 +0000
    41.3 @@ -1,3 +1,21 @@
    41.4 +/* -*- C++ -*-
    41.5 + *
    41.6 + * This file is a part of LEMON, a generic C++ optimization library
    41.7 + *
    41.8 + * Copyright (C) 2003-2006
    41.9 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
   41.10 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
   41.11 + *
   41.12 + * Permission to use, modify and distribute this software is granted
   41.13 + * provided that this copyright notice appears in all copies. For
   41.14 + * precise terms see the accompanying LICENSE file.
   41.15 + *
   41.16 + * This software is provided "AS IS" with no warranty of any kind,
   41.17 + * express or implied, and with no claim as to its suitability for any
   41.18 + * purpose.
   41.19 + *
   41.20 + */
   41.21 +
   41.22  #ifndef XYMAP_H
   41.23  #define XYMAP_H
   41.24