From 096c329a5cbaf0557045c44b9af30f79e72df336 Mon Sep 17 00:00:00 2001
From: Christophe Geuzaine <cgeuzaine@ulg.ac.be>
Date: Fri, 15 Oct 2010 11:04:33 +0000
Subject: [PATCH]

---
 Post/PViewFactory.cpp |  9 ++++++++-
 Post/PViewFactory.h   | 12 ++++++++++--
 2 files changed, 18 insertions(+), 3 deletions(-)

diff --git a/Post/PViewFactory.cpp b/Post/PViewFactory.cpp
index 03029d510e..1da58147b2 100644
--- a/Post/PViewFactory.cpp
+++ b/Post/PViewFactory.cpp
@@ -1,3 +1,8 @@
+// Gmsh - Copyright (C) 1997-2010 C. Geuzaine, J.-F. Remacle
+//
+// See the LICENSE.txt file for license information. Please report all
+// bugs and problems to <gmsh@geuz.org>.
+
 #include "PViewFactory.h"
 #include "GModel.h"
 #include "fullMatrix.h"
@@ -5,7 +10,9 @@
 #include <vector>
 #include "Bindings.h"
 
-PViewFactory::PViewFactory (std::string name, std::string type, GModel *model, int timeStep, int dim):_model(model),_name(name),_type(type),_timeStep(timeStep), _dim(dim)
+PViewFactory::PViewFactory (std::string name, std::string type, GModel *model,
+                            int timeStep, int dim)
+ : _model(model), _name(name), _type(type), _timeStep(timeStep), _dim(dim)
 {
 }
 
diff --git a/Post/PViewFactory.h b/Post/PViewFactory.h
index 3502d27e4e..000b26cff1 100644
--- a/Post/PViewFactory.h
+++ b/Post/PViewFactory.h
@@ -1,11 +1,18 @@
+// Gmsh - Copyright (C) 1997-2010 C. Geuzaine, J.-F. Remacle
+//
+// See the LICENSE.txt file for license information. Please report all
+// bugs and problems to <gmsh@geuz.org>.
+
 #ifndef _PVIEW_FACTORY_H_
 #define _PVIEW_FACTORY_H_
-//quick hack to have something that we can bind for the summer school...
-//this class has probably to be removed or rewritten
+
+// quick hack to have something that we can bind for the summer
+// school...  this class has probably to be removed or rewritten
 
 #include<map>
 #include<vector>
 #include<string>
+
 class GModel;
 class PView;
 template <class t>
@@ -23,4 +30,5 @@ class PViewFactory {
   PView *createView();
   static void registerBindings(binding *);
 };
+
 #endif
-- 
GitLab