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

#ifndef _EIGENVECTORS_H_
#define _EIGENVECTORS_H_

#include "Plugin.h"

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

class GMSH_EigenvectorsPlugin : public GMSH_PostPlugin
{
 public:
  GMSH_EigenvectorsPlugin(){}
  std::string getName() const { return "Eigenvectors"; }
  std::string getHelp() const;
  int getNbOptions() const;
  StringXNumber *getOption(int iopt);  
  PView *execute(PView *);
};

#endif