Skip to content
Snippets Groups Projects
Commit 2b969028 authored by Bastien Gorissen's avatar Bastien Gorissen
Browse files

Put back some missing references to some plugins.

parent af0b031a
No related branches found
No related tags found
No related merge requests found
# Gmsh - Copyright (C) 1997-2010 C. Geuzaine, J.-F. Remacle
# Gmsh - Copyright (C) 1997-2011 C. Geuzaine, J.-F. Remacle
#
# See the LICENSE.txt file for license information. Please report all
# bugs and problems to <gmsh@geuz.org>.
......@@ -10,7 +10,7 @@ set(SRC
Smooth.cpp CutParametric.cpp
Lambda2.cpp
Eigenvectors.cpp Eigenvalues.cpp
StreamLines.cpp Particles.cpp CutGrid.cpp
StreamLines.cpp Particles.cpp CutGrid.cpp CutBox.cpp
Transform.cpp
LongitudeLatitude.cpp
Triangulate.cpp Tetrahedralize.cpp
......@@ -24,7 +24,8 @@ set(SRC
HarmonicToTime.cpp ModulusPhase.cpp
HomologyComputation.cpp
Distance.cpp ExtractEdges.cpp NearestNeighbor.cpp
AnalyseCurvedMesh.cpp
AnalyseCurvedMesh.cpp FieldFromAmplitudePhase.cpp
Bubbles.cpp NearToFarField.cpp
DiscretizationError.cpp
)
......
// Gmsh - Copyright (C) 1997-2010 C. Geuzaine, J.-F. Remacle
// Gmsh - Copyright (C) 1997-2011 C. Geuzaine, J.-F. Remacle
//
// See the LICENSE.txt file for license information. Please report all
// bugs and problems to <gmsh@geuz.org>.
......@@ -17,6 +17,7 @@
#include "CutPlane.h"
#include "CutParametric.h"
#include "CutSphere.h"
#include "CutBox.h"
#include "Skin.h"
#include "AnalyseCurvedMesh.h"
#include "MathEval.h"
......@@ -48,6 +49,9 @@
#include "GSHHS.h"
#include "HomologyComputation.h"
#include "ExtractEdges.h"
#include "FieldFromAmplitudePhase.h"
#include "Bubbles.h"
#include "NearToFarField.h"
#include "DiscretizationError.h"
// for testing purposes only :-)
......@@ -162,6 +166,8 @@ void PluginManager::registerDefaultPlugins()
("CutPlane", GMSH_RegisterCutPlanePlugin()));
allPlugins.insert(std::pair<std::string, GMSH_Plugin*>
("CutSphere", GMSH_RegisterCutSpherePlugin()));
allPlugins.insert(std::pair<std::string, GMSH_Plugin*>
("CutBox", GMSH_RegisterCutBoxPlugin()));
allPlugins.insert(std::pair<std::string, GMSH_Plugin*>
("Skin", GMSH_RegisterSkinPlugin()));
allPlugins.insert(std::pair<std::string, GMSH_Plugin*>
......@@ -220,6 +226,12 @@ void PluginManager::registerDefaultPlugins()
("GSHHS", GMSH_RegisterGSHHSPlugin()));
allPlugins.insert(std::pair<std::string, GMSH_Plugin*>
("ExtractEdges", GMSH_RegisterExtractEdgesPlugin()));
allPlugins.insert(std::pair<std::string, GMSH_Plugin*>
("FieldFromAmplitudePhase", GMSH_RegisterFieldFromAmplitudePhasePlugin()));
allPlugins.insert(std::pair<std::string, GMSH_Plugin*>
("NearToFarField", GMSH_RegisterNearToFarFieldPlugin()));
allPlugins.insert(std::pair<std::string, GMSH_Plugin*>
("Bubbles", GMSH_RegisterBubblesPlugin()));
allPlugins.insert(std::pair<std::string, GMSH_Plugin*>
("DiscretizationError", GMSH_RegisterDiscretizationErrorPlugin()));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment