~ubuntu-branches/ubuntu/intrepid/gmsh/intrepid

« back to all changes in this revision

Viewing changes to Plugin/Plugin.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Andrea Veri
  • Date: 2007-07-14 23:29:56 UTC
  • mfrom: (1.2.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20070714232956-ikw2f28278kxkquw
Tags: 2.0.8-1ubuntu1
* Merge from debian unstable, remaining changes:
  debian/rules:
    - added dh_desktop for registering gmsh.desktop file.
  debian/gmsh.install:
    - Installing both gmsh.desktop and respective icon.
  debian/menu:
    - added gmsh icon path
  debian/control:
    - Modify Maintainer value to match Debian-Maintainer-Field Spec.

* removing 02_gcc4.3-FTBFS.dpatch previously added in ubuntu, it has been reported 
  and fixed upstream with the new usptream release (2.0.8).
  Check debian bug #417211 for confirmation.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// $Id: Plugin.cpp,v 1.86 2007/01/16 11:31:42 geuzaine Exp $
 
1
// $Id: Plugin.cpp,v 1.89 2007-05-07 07:50:33 remacle Exp $
2
2
//
3
3
// Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle
4
4
//
50
50
#include "Divergence.h"
51
51
#include "Annotate.h"
52
52
#include "Remove.h"
53
 
#include "DecomposeInSimplex.h"
 
53
#include "MakeSimplex.h"
54
54
#include "Smooth.h"
55
55
#include "Transform.h"
56
56
#include "Triangulate.h"
57
57
#include "Warp.h"
 
58
#include "SphericalRaise.h"
58
59
#include "Eigenvectors.h"
59
60
#include "Eigenvalues.h"
60
61
#include "Lambda2.h"
61
62
#include "Evaluate.h"
62
63
#include "Probe.h"
 
64
#include "FieldView.h"
63
65
#include "Context.h"
64
66
 
65
67
extern Context_T CTX;
190
192
                      ("ExtractEdges", GMSH_RegisterExtractEdgesPlugin()));
191
193
#endif
192
194
    allPlugins.insert(std::pair < char *, GMSH_Plugin * >
193
 
                      ("DecomposeInSimplex", GMSH_RegisterDecomposeInSimplexPlugin()));
 
195
                      ("MakeSimplex", GMSH_RegisterMakeSimplexPlugin()));
194
196
    allPlugins.insert(std::pair < char *, GMSH_Plugin * >
195
197
                      ("Smooth", GMSH_RegisterSmoothPlugin()));
196
198
    allPlugins.insert(std::pair < char *, GMSH_Plugin * >
198
200
    allPlugins.insert(std::pair < char *, GMSH_Plugin * >
199
201
                      ("Warp", GMSH_RegisterWarpPlugin()));
200
202
    allPlugins.insert(std::pair < char *, GMSH_Plugin * >
 
203
                      ("SphericalRaise", GMSH_RegisterSphericalRaisePlugin()));
 
204
    allPlugins.insert(std::pair < char *, GMSH_Plugin * >
201
205
                      ("HarmonicToTime", GMSH_RegisterHarmonicToTimePlugin()));
202
206
    allPlugins.insert(std::pair < char *, GMSH_Plugin * >
203
207
                      ("ModulusPhase", GMSH_RegisterModulusPhasePlugin()));
221
225
                      ("Lambda2", GMSH_RegisterLambda2Plugin()));
222
226
    allPlugins.insert(std::pair < char *, GMSH_Plugin * >
223
227
                      ("Probe", GMSH_RegisterProbePlugin()));
 
228
    allPlugins.insert(std::pair < char *, GMSH_Plugin * >
 
229
                      ("FieldView", GMSH_RegisterFieldViewPlugin()));
224
230
#if defined(HAVE_TRIANGLE)
225
231
    allPlugins.insert(std::pair < char *, GMSH_Plugin * >
226
232
                      ("Triangulate", GMSH_RegisterTriangulatePlugin()));