~ubuntu-branches/debian/squeeze/gmsh/squeeze

« back to all changes in this revision

Viewing changes to Plugin/HarmonicToTime.h

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Prud'homme, Christophe Prud'homme
  • Date: 2009-09-02 18:12:15 UTC
  • mfrom: (1.2.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20090902181215-yla8zvcas2ucvkm9
[Christophe Prud'homme]
* New upstream release
  + fixed surface mesh orientation bug introduced in 2.4.0;
  + mesh and graphics code refactoring;
  + small usability enhancements and bug fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 
16
16
class GMSH_HarmonicToTimePlugin : public GMSH_PostPlugin
17
17
{
18
 
public:
19
 
  GMSH_HarmonicToTimePlugin();
20
 
  void getName(char *name) const;
21
 
  void getInfos(char *author, char *copyright, char *help_text) const;
22
 
  void catchErrorMessage(char *errorMessage) const;
 
18
 public:
 
19
  GMSH_HarmonicToTimePlugin(){}
 
20
  std::string getName() const { return "HarmonicToTime"; }
 
21
  std::string getHelp() const;
23
22
  int getNbOptions() const;
24
23
  StringXNumber* getOption(int iopt);  
25
24
  PView *execute(PView *);