// // File: feature_mesh.h // // (C) 2000-2006 Helmut Cantzler // // Licensed under the terms of the Lesser General Public License. // #ifndef _FEATURE_MESH_H #define _FEATURE_MESH_H #include "mesh.h" using namespace std; class Feature_Mesh : public Mesh { public: int read(FILE *f, int (*update_progress)(int pos), void (*set_total)(int size)); void write(FILE *f, const char *comment = ""); }; #endif