Select Git revision
getddm.html
HarmonicToTime.h 737 B
// Gmsh - Copyright (C) 1997-2019 C. Geuzaine, J.-F. Remacle
//
// See the LICENSE.txt file for license information. Please report all
// issues on https://gitlab.onelab.info/gmsh/gmsh/issues.
#ifndef _HARMONIC_TO_TIME_H_
#define _HARMONIC_TO_TIME_H_
#include "Plugin.h"
extern "C" {
GMSH_Plugin *GMSH_RegisterHarmonicToTimePlugin();
}
class GMSH_HarmonicToTimePlugin : public GMSH_PostPlugin {
public:
GMSH_HarmonicToTimePlugin() {}
std::string getName() const { return "HarmonicToTime"; }
std::string getShortHelp() const
{
return "Transform harmonic data into time domain data";
}
std::string getHelp() const;
int getNbOptions() const;
StringXNumber *getOption(int iopt);
PView *execute(PView *);
};
#endif