Skip to content
Snippets Groups Projects
Forked from gmsh / gmsh
11310 commits behind the upstream repository.
MinMax.h 681 B
// Gmsh - Copyright (C) 1997-2013 C. Geuzaine, J.-F. Remacle
//
// See the LICENSE.txt file for license information. Please report all
// bugs and problems to the public mailing list <gmsh@geuz.org>.

#ifndef _MIN_MAX_H_
#define _MIN_MAX_H_

#include "Plugin.h"

extern "C"
{
  GMSH_Plugin *GMSH_RegisterMinMaxPlugin();
}

class GMSH_MinMaxPlugin : public GMSH_PostPlugin
{
 public:
  GMSH_MinMaxPlugin(){}
  std::string getName() const { return "MinMax"; }
  std::string getShortHelp() const
  {
    return "Get the min/max of a dataset";
  }
  std::string getHelp() const;
  int getNbOptions() const;
  StringXNumber* getOption(int iopt);  
  PView *execute(PView *);
};

#endif