gmsh-TingyuanDoc  0.1
An Open-Source Timing-driven Analytical Mixed-size FPGA Placer
MinMax.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 MIN_MAX_H
7 #define MIN_MAX_H
8 
9 #include "Plugin.h"
10 
11 extern "C" {
13 }
14 
16 public:
18  std::string getName() const { return "MinMax"; }
19  std::string getShortHelp() const { return "Get the min/max of a dataset"; }
20  std::string getHelp() const;
21  int getNbOptions() const;
22  StringXNumber *getOption(int iopt);
23  PView *execute(PView *);
24 };
25 
26 #endif
PView
Definition: PView.h:27
Plugin.h
GMSH_Plugin
Definition: Plugin.h:26
GMSH_MinMaxPlugin::getName
std::string getName() const
Definition: MinMax.h:18
GMSH_MinMaxPlugin::getShortHelp
std::string getShortHelp() const
Definition: MinMax.h:19
StringXNumber
Definition: Options.h:918
GMSH_MinMaxPlugin::getHelp
std::string getHelp() const
Definition: MinMax.cpp:18
GMSH_MinMaxPlugin
Definition: MinMax.h:15
GMSH_MinMaxPlugin::GMSH_MinMaxPlugin
GMSH_MinMaxPlugin()
Definition: MinMax.h:17
GMSH_RegisterMinMaxPlugin
GMSH_Plugin * GMSH_RegisterMinMaxPlugin()
Definition: MinMax.cpp:15
GMSH_MinMaxPlugin::execute
PView * execute(PView *)
Definition: MinMax.cpp:39
GMSH_MinMaxPlugin::getOption
StringXNumber * getOption(int iopt)
Definition: MinMax.cpp:34
GMSH_PostPlugin
Definition: Plugin.h:83
GMSH_MinMaxPlugin::getNbOptions
int getNbOptions() const
Definition: MinMax.cpp:29