QWT API (English) 7.3.0
Qt Widget Library for Technical Applications - English API Documentation
Loading...
Searching...
No Matches
qwt3d_io_reader.h
1#ifndef QWT3D_IO_READER_H
2#define QWT3D_IO_READER_H
3
4#include "qwt3d_io.h"
5
6
7
12class QWT3D_EXPORT Qwt3DNativeReader : public Qwt3DIO::Functor
13{
14 friend class Qwt3DIO;
15 QWT_DECLARE_PRIVATE(Qwt3DNativeReader)
16
17public:
19 ~Qwt3DNativeReader() override;
20
21private:
22 Qwt3DIO::Functor* clone() const override;
23 bool operator()(Qwt3DPlot* plot, QString const& fname) override;
24 static const char* magicstring;
25 bool collectInfo(FILE*& file,
26 QString const& fname,
27 unsigned& xmesh,
28 unsigned& ymesh,
29 double& minx,
30 double& maxx,
31 double& miny,
32 double& maxy);
33};
34
35
36#endif // QWT3D_IO_READER_H
Functor class for more flexible IO handler implementation.
Definition qwt3d_io.h:35
Generic interface for standard and user written I/O handlers.
Definition qwt3d_io.h:23
Functor for reading of native files containing grid data.
Definition qwt3d_io_reader.h:13
Pure rendering window for 3D plots.
Definition qwt3d_plot.h:36