Select Git revision
-
Christophe Geuzaine authoredChristophe Geuzaine authored
NewView.h 750 B
// Gmsh - Copyright (C) 1997-2019 C. Geuzaine, J.-F. Remacle
//
// See the LICENSE.txt file for license information. Please report all
// issues on https://gitlab.onelab.info/gmsh/gmsh/issues.
#ifndef NEWVIEW_H
#define NEWVIEW_H
#include "Plugin.h"
extern "C" {
GMSH_Plugin *GMSH_RegisterNewViewPlugin();
}
class GMSH_NewViewPlugin : public GMSH_PostPlugin {
public:
GMSH_NewViewPlugin() {}
std::string getName() const { return "NewView"; }
std::string getShortHelp() const
{
return "Create an empty new view from a mesh";
}
std::string getHelp() const;
int getNbOptions() const;
StringXNumber *getOption(int iopt);
int getNbOptionsStr() const;
StringXString *getOptionStr(int iopt);
PView *execute(PView *);
};
#endif