gmsh-TingyuanDoc  0.1
An Open-Source Timing-driven Analytical Mixed-size FPGA Placer
Integrate.h
Go to the documentation of this file.
1 // Gmsh - Copyright (C) 1997-2022 C. Geuzaine, J.-F. Remacle
2 //
3 // See the LICENSE.txt file in the Gmsh root directory for license information.
4 // Please report all issues on https://gitlab.onelab.info/gmsh/gmsh/issues.
5 
6 #ifndef INTEGRATE_H
7 #define INTEGRATE_H
8 
9 #include "Plugin.h"
10 
11 extern "C" {
13 }
14 
16 public:
18  std::string getName() const { return "Integrate"; }
19  std::string getShortHelp() const { return "Integrate data"; }
20  std::string getHelp() const;
21  int getNbOptions() const;
22  StringXNumber *getOption(int iopt);
23  PView *execute(PView *);
24 };
25 
26 #endif
GMSH_IntegratePlugin::getHelp
std::string getHelp() const
Definition: Integrate.cpp:23
PView
Definition: PView.h:27
Plugin.h
GMSH_Plugin
Definition: Plugin.h:26
GMSH_IntegratePlugin::getNbOptions
int getNbOptions() const
Definition: Integrate.cpp:38
StringXNumber
Definition: Options.h:918
GMSH_IntegratePlugin::GMSH_IntegratePlugin
GMSH_IntegratePlugin()
Definition: Integrate.h:17
GMSH_IntegratePlugin::getOption
StringXNumber * getOption(int iopt)
Definition: Integrate.cpp:43
GMSH_IntegratePlugin::getName
std::string getName() const
Definition: Integrate.h:18
GMSH_IntegratePlugin::getShortHelp
std::string getShortHelp() const
Definition: Integrate.h:19
GMSH_RegisterIntegratePlugin
GMSH_Plugin * GMSH_RegisterIntegratePlugin()
Definition: Integrate.cpp:17
GMSH_PostPlugin
Definition: Plugin.h:83
GMSH_IntegratePlugin::execute
PView * execute(PView *)
Definition: Integrate.cpp:48
GMSH_IntegratePlugin
Definition: Integrate.h:15