From 84cc7957c84f4e757b7d3dd3da583a00c62cb2b2 Mon Sep 17 00:00:00 2001
From: Christophe Geuzaine <cgeuzaine@ulg.ac.be>
Date: Tue, 15 Aug 2006 06:26:53 +0000
Subject: [PATCH] *** empty log message ***

---
 Geo/GEdge.cpp          | 21 +++++++++++++++++++++
 Geo/GEdge.h            | 19 +++++++++++++++++++
 Geo/GEdgeLoop.h        | 18 ------------------
 Geo/GEntity.h          | 19 +++++++++++++++++++
 Geo/GFace.cpp          | 21 +++++++++++++++++++++
 Geo/GFace.h            | 19 +++++++++++++++++++
 Geo/GModel.cpp         | 21 +++++++++++++++++++++
 Geo/GModel.h           | 19 +++++++++++++++++++
 Geo/GModelIO.cpp       | 21 +++++++++++++++++++++
 Geo/GPoint.h           | 19 +++++++++++++++++++
 Geo/GRegion.cpp        | 21 +++++++++++++++++++++
 Geo/GRegion.h          | 19 +++++++++++++++++++
 Geo/GVertex.cpp        | 21 +++++++++++++++++++++
 Geo/GVertex.h          | 19 +++++++++++++++++++
 Geo/MEdge.h            | 19 +++++++++++++++++++
 Geo/MElement.cpp       | 21 +++++++++++++++++++++
 Geo/MElement.h         | 19 +++++++++++++++++++
 Geo/MFace.h            | 19 +++++++++++++++++++
 Geo/MRep.h             | 19 +++++++++++++++++++
 Geo/MVertex.cpp        | 21 +++++++++++++++++++++
 Geo/MVertex.h          | 19 +++++++++++++++++++
 Geo/Pair.h             | 19 +++++++++++++++++++
 Geo/Range.h            | 19 +++++++++++++++++++
 Geo/SBoundingBox3d.cpp | 21 +++++++++++++++++++++
 Geo/SBoundingBox3d.h   | 19 +++++++++++++++++++
 Geo/SPoint2.h          | 19 +++++++++++++++++++
 Geo/SPoint3.h          | 19 +++++++++++++++++++
 Geo/SVector3.cpp       | 21 +++++++++++++++++++++
 Geo/SVector3.h         | 19 +++++++++++++++++++
 Geo/gmshEdge.cpp       | 21 +++++++++++++++++++++
 Geo/gmshEdge.h         | 19 +++++++++++++++++++
 Geo/gmshFace.cpp       | 21 +++++++++++++++++++++
 Geo/gmshFace.h         | 19 +++++++++++++++++++
 Geo/gmshModel.cpp      | 21 +++++++++++++++++++++
 Geo/gmshModel.h        | 19 +++++++++++++++++++
 Geo/gmshRegion.cpp     | 21 +++++++++++++++++++++
 Geo/gmshRegion.h       | 19 +++++++++++++++++++
 Geo/gmshVertex.h       | 19 +++++++++++++++++++
 Mesh/meshGEdge.cpp     | 21 +++++++++++++++++++++
 Mesh/meshGEdge.h       | 19 +++++++++++++++++++
 Mesh/meshGFace.cpp     | 21 +++++++++++++++++++++
 Mesh/meshGFace.h       | 19 +++++++++++++++++++
 42 files changed, 811 insertions(+), 18 deletions(-)
 delete mode 100644 Geo/GEdgeLoop.h

diff --git a/Geo/GEdge.cpp b/Geo/GEdge.cpp
index e291007584..87d996091e 100644
--- a/Geo/GEdge.cpp
+++ b/Geo/GEdge.cpp
@@ -1,3 +1,24 @@
+// $Id: GEdge.cpp,v 1.12 2006-08-15 06:26:52 geuzaine Exp $
+//
+// Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+// 
+// Please report all bugs and problems to <gmsh@geuz.org>.
+
 #include <algorithm>
 #include "GModel.h"
 #include "GEdge.h"
diff --git a/Geo/GEdge.h b/Geo/GEdge.h
index 5552b53990..e06fef7dd6 100644
--- a/Geo/GEdge.h
+++ b/Geo/GEdge.h
@@ -1,6 +1,25 @@
 #ifndef _GEDGE_H_
 #define _GEDGE_H_
 
+// Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+// 
+// Please report all bugs and problems to <gmsh@geuz.org>.
+
 #include "GEntity.h"
 #include "GVertex.h"
 #include "SVector3.h"
diff --git a/Geo/GEdgeLoop.h b/Geo/GEdgeLoop.h
deleted file mode 100644
index 9787e78ff6..0000000000
--- a/Geo/GEdgeLoop.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#ifndef _GEDGE_LOOP_H_
-#define _GEDGE_LOOP_H_
-
-#include <list>
-
-class GEdgeLoop
-{
- private:
-  std::list<GEdge*> loop;
-  std::list<int>    dirs;
- public :
-  GEdgeLoop (const std::list<GEdge*> & l,   const std::list<int> & d)
-    : loop (l) , dirs (d)
-  {
-  }
-};
-
-#endif
diff --git a/Geo/GEntity.h b/Geo/GEntity.h
index 4f44509493..c94cdefeae 100644
--- a/Geo/GEntity.h
+++ b/Geo/GEntity.h
@@ -1,6 +1,25 @@
 #ifndef _GENTITY_H_
 #define _GENTITY_H_
 
+// Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+// 
+// Please report all bugs and problems to <gmsh@geuz.org>.
+
 #include <list>
 #include <vector>
 #include <string>
diff --git a/Geo/GFace.cpp b/Geo/GFace.cpp
index 123f4b8462..43e4d058c7 100644
--- a/Geo/GFace.cpp
+++ b/Geo/GFace.cpp
@@ -1,3 +1,24 @@
+// $Id: GFace.cpp,v 1.12 2006-08-15 06:26:52 geuzaine Exp $
+//
+// Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+// 
+// Please report all bugs and problems to <gmsh@geuz.org>.
+
 #include "GModel.h"
 #include "GFace.h"
 #include "GEdge.h"
diff --git a/Geo/GFace.h b/Geo/GFace.h
index 0291f6344b..bd79662d56 100644
--- a/Geo/GFace.h
+++ b/Geo/GFace.h
@@ -1,6 +1,25 @@
 #ifndef _GFACE_H_
 #define _GFACE_H_
 
+// Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+// 
+// Please report all bugs and problems to <gmsh@geuz.org>.
+
 #include "GPoint.h"
 #include "GEntity.h"
 #include "MElement.h"
diff --git a/Geo/GModel.cpp b/Geo/GModel.cpp
index 76c6aa3707..42fc795729 100644
--- a/Geo/GModel.cpp
+++ b/Geo/GModel.cpp
@@ -1,3 +1,24 @@
+// $Id: GModel.cpp,v 1.10 2006-08-15 06:26:52 geuzaine Exp $
+//
+// Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+// 
+// Please report all bugs and problems to <gmsh@geuz.org>.
+
 #include "GModel.h"
 
 GModel::~GModel()
diff --git a/Geo/GModel.h b/Geo/GModel.h
index 64df467d9e..69079ac946 100644
--- a/Geo/GModel.h
+++ b/Geo/GModel.h
@@ -1,6 +1,25 @@
 #ifndef _GMODEL_H_
 #define _GMODEL_H_
 
+// Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+// 
+// Please report all bugs and problems to <gmsh@geuz.org>.
+
 #include <algorithm>
 #include <set>
 #include <map>
diff --git a/Geo/GModelIO.cpp b/Geo/GModelIO.cpp
index 95a7cbc9ce..bf3154b072 100644
--- a/Geo/GModelIO.cpp
+++ b/Geo/GModelIO.cpp
@@ -1,3 +1,24 @@
+// $Id: GModelIO.cpp,v 1.14 2006-08-15 06:26:52 geuzaine Exp $
+//
+// Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+// 
+// Please report all bugs and problems to <gmsh@geuz.org>.
+
 #include <map>
 #include <string>
 
diff --git a/Geo/GPoint.h b/Geo/GPoint.h
index c02ded8559..1a14289cb0 100644
--- a/Geo/GPoint.h
+++ b/Geo/GPoint.h
@@ -1,6 +1,25 @@
 #ifndef _GPOINT_H_
 #define _GPOINT_H_
 
+// Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+// 
+// Please report all bugs and problems to <gmsh@geuz.org>.
+
 class GEntity;
 
 class GPoint 
diff --git a/Geo/GRegion.cpp b/Geo/GRegion.cpp
index 9749754fd0..e71324817e 100644
--- a/Geo/GRegion.cpp
+++ b/Geo/GRegion.cpp
@@ -1,3 +1,24 @@
+// $Id: GRegion.cpp,v 1.8 2006-08-15 06:26:52 geuzaine Exp $
+//
+// Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+// 
+// Please report all bugs and problems to <gmsh@geuz.org>.
+
 #include "GModel.h"
 #include "GRegion.h"
 #include "GFace.h"
diff --git a/Geo/GRegion.h b/Geo/GRegion.h
index 5a499293d9..9a31897795 100644
--- a/Geo/GRegion.h
+++ b/Geo/GRegion.h
@@ -1,6 +1,25 @@
 #ifndef _GREGION_H_
 #define _GREGION_H_
 
+// Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+// 
+// Please report all bugs and problems to <gmsh@geuz.org>.
+
 #include "GEntity.h"
 #include "MElement.h"
 
diff --git a/Geo/GVertex.cpp b/Geo/GVertex.cpp
index 62107de40d..7fa491d8a6 100644
--- a/Geo/GVertex.cpp
+++ b/Geo/GVertex.cpp
@@ -1,3 +1,24 @@
+// $Id: GVertex.cpp,v 1.5 2006-08-15 06:26:52 geuzaine Exp $
+//
+// Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+// 
+// Please report all bugs and problems to <gmsh@geuz.org>.
+
 #include "GVertex.h"
 #include <algorithm>
 
diff --git a/Geo/GVertex.h b/Geo/GVertex.h
index 9e595a0d01..8cf5a43a03 100644
--- a/Geo/GVertex.h
+++ b/Geo/GVertex.h
@@ -1,6 +1,25 @@
 #ifndef _GVERTEX_H_
 #define _GVERTEX_H_
 
+// Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+// 
+// Please report all bugs and problems to <gmsh@geuz.org>.
+
 #include "GEntity.h"
 #include "MVertex.h"
 #include "GPoint.h"
diff --git a/Geo/MEdge.h b/Geo/MEdge.h
index af509e2930..5af7017bed 100644
--- a/Geo/MEdge.h
+++ b/Geo/MEdge.h
@@ -1,6 +1,25 @@
 #ifndef _MEDGE_H_
 #define _MEDGE_H_
 
+// Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+// 
+// Please report all bugs and problems to <gmsh@geuz.org>.
+
 #include <algorithm>
 #include "MVertex.h"
 
diff --git a/Geo/MElement.cpp b/Geo/MElement.cpp
index 4451fe8cc2..a38fd89168 100644
--- a/Geo/MElement.cpp
+++ b/Geo/MElement.cpp
@@ -1,3 +1,24 @@
+// $Id: MElement.cpp,v 1.8 2006-08-15 06:26:52 geuzaine Exp $
+//
+// Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+// 
+// Please report all bugs and problems to <gmsh@geuz.org>.
+
 #include <math.h>
 #include "MElement.h"
 #include "GEntity.h"
diff --git a/Geo/MElement.h b/Geo/MElement.h
index 6c7ee7724b..cc2c7bc977 100644
--- a/Geo/MElement.h
+++ b/Geo/MElement.h
@@ -1,6 +1,25 @@
 #ifndef _MELEMENT_H_
 #define _MELEMENT_H_
 
+// Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+// 
+// Please report all bugs and problems to <gmsh@geuz.org>.
+
 #include <stdio.h>
 #include <algorithm>
 #include "GmshDefines.h"
diff --git a/Geo/MFace.h b/Geo/MFace.h
index ee21ca0b22..de6e7f7d0d 100644
--- a/Geo/MFace.h
+++ b/Geo/MFace.h
@@ -1,6 +1,25 @@
 #ifndef _MFACE_H_
 #define _MFACE_H_
 
+// Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+// 
+// Please report all bugs and problems to <gmsh@geuz.org>.
+
 #include "MVertex.h"
 #include "SVector3.h"
 #include "Numeric.h"
diff --git a/Geo/MRep.h b/Geo/MRep.h
index f466914892..ba85c7f05d 100644
--- a/Geo/MRep.h
+++ b/Geo/MRep.h
@@ -1,6 +1,25 @@
 #ifndef _MREP_H_
 #define _MREP_H_
 
+// Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+// 
+// Please report all bugs and problems to <gmsh@geuz.org>.
+
 #include <set>
 #include <algorithm>
 #include "GEdge.h"
diff --git a/Geo/MVertex.cpp b/Geo/MVertex.cpp
index ce6599de43..fd582d3b87 100644
--- a/Geo/MVertex.cpp
+++ b/Geo/MVertex.cpp
@@ -1,3 +1,24 @@
+// $Id: MVertex.cpp,v 1.5 2006-08-15 06:26:52 geuzaine Exp $
+//
+// Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+// 
+// Please report all bugs and problems to <gmsh@geuz.org>.
+
 #include <math.h>
 #include "MVertex.h"
 
diff --git a/Geo/MVertex.h b/Geo/MVertex.h
index 374b2bc1fc..7d50aabd7e 100644
--- a/Geo/MVertex.h
+++ b/Geo/MVertex.h
@@ -1,6 +1,25 @@
 #ifndef _MVERTEX_H_
 #define _MVERTEX_H_
 
+// Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+// 
+// Please report all bugs and problems to <gmsh@geuz.org>.
+
 #include <stdio.h>
 #include <algorithm>
 #include "SPoint3.h"
diff --git a/Geo/Pair.h b/Geo/Pair.h
index 870cd61d63..a2f17dec5a 100644
--- a/Geo/Pair.h
+++ b/Geo/Pair.h
@@ -1,6 +1,25 @@
 #ifndef _PAIR_H_
 #define _PAIR_H_
 
+// Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+// 
+// Please report all bugs and problems to <gmsh@geuz.org>.
+
 // A pair of values, the types of which can be different
 template <class L, class R>
 class Pair{
diff --git a/Geo/Range.h b/Geo/Range.h
index c0dbfb7943..60f7477d94 100644
--- a/Geo/Range.h
+++ b/Geo/Range.h
@@ -1,6 +1,25 @@
 #ifndef _RANGE_H_
 #define _RANGE_H_
 
+// Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+// 
+// Please report all bugs and problems to <gmsh@geuz.org>.
+
 // represents a range of values of the template type
 template <class T>
 class Range {
diff --git a/Geo/SBoundingBox3d.cpp b/Geo/SBoundingBox3d.cpp
index 9dbbb116ed..f0831aac04 100644
--- a/Geo/SBoundingBox3d.cpp
+++ b/Geo/SBoundingBox3d.cpp
@@ -1,3 +1,24 @@
+// $Id: SBoundingBox3d.cpp,v 1.3 2006-08-15 06:26:52 geuzaine Exp $
+//
+// Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+// 
+// Please report all bugs and problems to <gmsh@geuz.org>.
+
 #include "SBoundingBox3d.h"
 #include <float.h>
 
diff --git a/Geo/SBoundingBox3d.h b/Geo/SBoundingBox3d.h
index 44b96bcd10..b058ca0877 100644
--- a/Geo/SBoundingBox3d.h
+++ b/Geo/SBoundingBox3d.h
@@ -1,6 +1,25 @@
 #ifndef _SBOUNDING_BOX_3D_H_
 #define _SBOUNDING_BOX_3D_H_
 
+// Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+// 
+// Please report all bugs and problems to <gmsh@geuz.org>.
+
 #include "SPoint3.h"
 
 // A bounding box class - add points and it grows to be the bounding
diff --git a/Geo/SPoint2.h b/Geo/SPoint2.h
index b7a27abdb6..a65e047ed0 100644
--- a/Geo/SPoint2.h
+++ b/Geo/SPoint2.h
@@ -1,6 +1,25 @@
 #ifndef _SPOINT2_H_
 #define _SPOINT2_H_
 
+// Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+// 
+// Please report all bugs and problems to <gmsh@geuz.org>.
+
 #include <math.h>
 
 // A point in 2-space
diff --git a/Geo/SPoint3.h b/Geo/SPoint3.h
index 7735c4a49c..eddfda836c 100644
--- a/Geo/SPoint3.h
+++ b/Geo/SPoint3.h
@@ -1,6 +1,25 @@
 #ifndef _SPOINT3_H_
 #define _SPOINT3_H_
 
+// Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+// 
+// Please report all bugs and problems to <gmsh@geuz.org>.
+
 #include <math.h>
 
 // A point in 3-space
diff --git a/Geo/SVector3.cpp b/Geo/SVector3.cpp
index 4fd12a3874..c04b392f7e 100644
--- a/Geo/SVector3.cpp
+++ b/Geo/SVector3.cpp
@@ -1,3 +1,24 @@
+// $Id: SVector3.cpp,v 1.3 2006-08-15 06:26:52 geuzaine Exp $
+//
+// Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+// 
+// Please report all bugs and problems to <gmsh@geuz.org>.
+
 #include "SVector3.h"
 #include "math.h"
 
diff --git a/Geo/SVector3.h b/Geo/SVector3.h
index c6d0501ea0..9f4777826a 100644
--- a/Geo/SVector3.h
+++ b/Geo/SVector3.h
@@ -1,6 +1,25 @@
 #ifndef _SVECTOR3_H_
 #define _SVECTOR3_H_
 
+// Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+// 
+// Please report all bugs and problems to <gmsh@geuz.org>.
+
 #include "SPoint3.h"
 
 // concrete class for vector of size 3
diff --git a/Geo/gmshEdge.cpp b/Geo/gmshEdge.cpp
index a33d86645f..7a948ade6b 100644
--- a/Geo/gmshEdge.cpp
+++ b/Geo/gmshEdge.cpp
@@ -1,3 +1,24 @@
+// $Id: gmshEdge.cpp,v 1.15 2006-08-15 06:26:53 geuzaine Exp $
+//
+// Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+// 
+// Please report all bugs and problems to <gmsh@geuz.org>.
+
 #include "gmshModel.h"
 #include "gmshEdge.h"
 #include "Interpolation.h"
diff --git a/Geo/gmshEdge.h b/Geo/gmshEdge.h
index 71e8207c1d..c1c28fc308 100644
--- a/Geo/gmshEdge.h
+++ b/Geo/gmshEdge.h
@@ -1,6 +1,25 @@
 #ifndef _GMSH_EDGE_H_
 #define _GMSH_EDGE_H_
 
+// Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+// 
+// Please report all bugs and problems to <gmsh@geuz.org>.
+
 #include "GEdge.h"
 #include "gmshModel.h"
 #include "gmshVertex.h"
diff --git a/Geo/gmshFace.cpp b/Geo/gmshFace.cpp
index 1786f4c215..cc106f2a83 100644
--- a/Geo/gmshFace.cpp
+++ b/Geo/gmshFace.cpp
@@ -1,3 +1,24 @@
+// $Id: gmshFace.cpp,v 1.14 2006-08-15 06:26:53 geuzaine Exp $
+//
+// Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+// 
+// Please report all bugs and problems to <gmsh@geuz.org>.
+
 #include "gmshModel.h"
 #include "gmshEdge.h"
 #include "gmshFace.h"
diff --git a/Geo/gmshFace.h b/Geo/gmshFace.h
index 64c1e96d3c..3d8acef18e 100644
--- a/Geo/gmshFace.h
+++ b/Geo/gmshFace.h
@@ -1,6 +1,25 @@
 #ifndef _GMSH_FACE_H_
 #define _GMSH_FACE_H_
 
+// Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+// 
+// Please report all bugs and problems to <gmsh@geuz.org>.
+
 #include "GFace.h"
 #include "gmshModel.h"
 #include "gmshVertex.h"
diff --git a/Geo/gmshModel.cpp b/Geo/gmshModel.cpp
index 03237e0371..d14775393b 100644
--- a/Geo/gmshModel.cpp
+++ b/Geo/gmshModel.cpp
@@ -1,3 +1,24 @@
+// $Id: gmshModel.cpp,v 1.12 2006-08-15 06:26:53 geuzaine Exp $
+//
+// Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+// 
+// Please report all bugs and problems to <gmsh@geuz.org>.
+
 #include "gmshModel.h"
 #include "Mesh.h"
 #include "Geo.h"
diff --git a/Geo/gmshModel.h b/Geo/gmshModel.h
index 1cf5dba8bb..bc1f964466 100644
--- a/Geo/gmshModel.h
+++ b/Geo/gmshModel.h
@@ -1,6 +1,25 @@
 #ifndef _GMSH_MODEL_H_
 #define _GMSH_MODEL_H_
 
+// Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+// 
+// Please report all bugs and problems to <gmsh@geuz.org>.
+
 #include "GModel.h"
 
 class gmshModel : public GModel {
diff --git a/Geo/gmshRegion.cpp b/Geo/gmshRegion.cpp
index b48feef4a8..50c2af7b6c 100644
--- a/Geo/gmshRegion.cpp
+++ b/Geo/gmshRegion.cpp
@@ -1,3 +1,24 @@
+// $Id: gmshRegion.cpp,v 1.6 2006-08-15 06:26:53 geuzaine Exp $
+//
+// Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+// 
+// Please report all bugs and problems to <gmsh@geuz.org>.
+
 #include "gmshModel.h"
 #include "gmshFace.h"
 #include "gmshRegion.h"
diff --git a/Geo/gmshRegion.h b/Geo/gmshRegion.h
index d751eba347..e7a0be8ef7 100644
--- a/Geo/gmshRegion.h
+++ b/Geo/gmshRegion.h
@@ -1,6 +1,25 @@
 #ifndef _GMSH_REGION_H_
 #define _GMSH_REGION_H_
 
+// Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+// 
+// Please report all bugs and problems to <gmsh@geuz.org>.
+
 #include "Mesh.h"
 #include "gmshModel.h"
 #include "GRegion.h"
diff --git a/Geo/gmshVertex.h b/Geo/gmshVertex.h
index e97e1cd167..baba17e41c 100644
--- a/Geo/gmshVertex.h
+++ b/Geo/gmshVertex.h
@@ -1,6 +1,25 @@
 #ifndef _GMSH_VERTEX_H_
 #define _GMSH_VERTEX_H_
 
+// Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+// 
+// Please report all bugs and problems to <gmsh@geuz.org>.
+
 #include "Mesh.h"
 #include "gmshModel.h"
 #include "GVertex.h"
diff --git a/Mesh/meshGEdge.cpp b/Mesh/meshGEdge.cpp
index 13a42b1e4d..7e698c08b9 100644
--- a/Mesh/meshGEdge.cpp
+++ b/Mesh/meshGEdge.cpp
@@ -1,3 +1,24 @@
+// $Id: meshGEdge.cpp,v 1.11 2006-08-15 06:26:53 geuzaine Exp $
+//
+// Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+// 
+// Please report all bugs and problems to <gmsh@geuz.org>.
+
 #include "meshGEdge.h"
 #include "GEdge.h"
 #include "Gmsh.h"
diff --git a/Mesh/meshGEdge.h b/Mesh/meshGEdge.h
index 2efedcadf5..40d22be02b 100644
--- a/Mesh/meshGEdge.h
+++ b/Mesh/meshGEdge.h
@@ -1,6 +1,25 @@
 #ifndef _MESH_GEDGE_H_
 #define _MESH_GEDGE_H_
 
+// Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+// 
+// Please report all bugs and problems to <gmsh@geuz.org>.
+
 class GEdge;
 // Create the mesh of the edge
 class meshGEdge 
diff --git a/Mesh/meshGFace.cpp b/Mesh/meshGFace.cpp
index ff53ae3121..c459375bb0 100644
--- a/Mesh/meshGFace.cpp
+++ b/Mesh/meshGFace.cpp
@@ -1,3 +1,24 @@
+// $Id: meshGFace.cpp,v 1.5 2006-08-15 06:26:53 geuzaine Exp $
+//
+// Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+// 
+// Please report all bugs and problems to <gmsh@geuz.org>.
+
 #include "meshGFace.h"
 #include "GVertex.h"
 #include "2D_Mesh.h"
diff --git a/Mesh/meshGFace.h b/Mesh/meshGFace.h
index ff78165729..a776a61577 100644
--- a/Mesh/meshGFace.h
+++ b/Mesh/meshGFace.h
@@ -1,6 +1,25 @@
 #ifndef _MESH_GFACE_H_
 #define _MESH_GFACE_H_
 
+// Copyright (C) 1997-2006 C. Geuzaine, J.-F. Remacle
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+// USA.
+// 
+// Please report all bugs and problems to <gmsh@geuz.org>.
+
 #include <map>
 #include "SPoint2.h"
 
-- 
GitLab