/* Copyright (C) Bernard Piette University of Durham (UK) Department of Mathematical Sciences This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. You can modify or use any part of the source code but only under the condition that this Copyright notice is kept in the resulting source file. */ #ifndef M_GRF_PDE_FM_H #define M_GRF_PDE_FM_H #include #include #include class grf_pde_plain : public grf_pde_1d { public: grf_pde_plain(pde_1d *pde,std::string file_name) : grf_pde_1d(pde,file_name) {}; virtual ~grf_pde_plain() {}; virtual void write_1_grf(const char *name,int findex,double *p, int vsize,double t); virtual std::string make_file_name(std::string name,int index, std::string suffix); }; #endif