Skip to content
Snippets Groups Projects
Commit 096c329a authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

No commit message

No commit message
parent 72630e8c
No related branches found
No related tags found
No related merge requests found
// 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)
{
}
......
// 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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment