Select Git revision
ExtractElements.h
Forked from
gmsh / gmsh
Source project has a limited visibility.
ExtractElements.h 720 B
// 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>.
#ifndef _EXTRACT_ELEMENTS_H_
#define _EXTRACT_ELEMENTS_H_
#include "Plugin.h"
extern "C"
{
GMSH_Plugin *GMSH_RegisterExtractElementsPlugin();
}
class GMSH_ExtractElementsPlugin : public GMSH_PostPlugin
{
public:
GMSH_ExtractElementsPlugin(){}
std::string getName() const { return "ExtractElements"; }
std::string getShortHelp() const
{
return "Extract elements in given value range";
}
std::string getHelp() const;
int getNbOptions() const;
StringXNumber* getOption(int iopt);
PView *execute(PView *);
};
#endif