QWT API (English) 7.0.1
Qt Widget Library for Technical Applications - English API Documentation
Loading...
Searching...
No Matches
qwt3d_io_reader.h
1#ifndef qwt3d_reader_h
2#define qwt3d_reader_h
3
4#include "qwt3d_io.h"
5
6namespace Qwt3D {
7
19class QWT3D_EXPORT NativeReader : public IO::Functor
20{
21 friend class IO;
22
23public:
25
26private:
27 IO::Functor *clone() const { return new NativeReader(*this); }
28 bool operator()(Plot3D *plot, QString const &fname);
29 static const char *magicstring;
30 double minz_, maxz_;
31 bool collectInfo(FILE *&file, QString const &fname, unsigned &xmesh, unsigned &ymesh,
32 double &minx, double &maxx, double &miny, double &maxy);
33};
34
35} // ns
36
37#endif
Functor class for more flexible IO handler implementation.
Definition qwt3d_io.h:52
Generic interface for standard and user written I/O handlers.
Definition qwt3d_io.h:33
Functor for reading of native files containing grid data.
Definition qwt3d_io_reader.h:20
Base class for all plotting widgets.
Definition qwt3d_plot.h:31