QWT API (中文) 7.3.0
Qt绘图库 - 中文API文档
载入中...
搜索中...
未找到
qwt3d_io_reader.h
1#ifndef QWT3D_IO_READER_H
2#define QWT3D_IO_READER_H
3
4#include "qwt3d_io.h"
5
6namespace Qwt3D
7{
8
13class QWT3D_EXPORT NativeReader : public IO::Functor
14{
15 friend class IO;
16 QWT_DECLARE_PRIVATE(NativeReader)
17
18public:
20 ~NativeReader() override;
21
22private:
23 IO::Functor* clone() const override;
24 bool operator()(Plot3D* plot, QString const& fname) override;
25 static const char* magicstring;
26 bool collectInfo(FILE*& file,
27 QString const& fname,
28 unsigned& xmesh,
29 unsigned& ymesh,
30 double& minx,
31 double& maxx,
32 double& miny,
33 double& maxy);
34};
35
36} // ns
37
38#endif // QWT3D_IO_READER_H
Functor class for more flexible IO handler implementation
Definition qwt3d_io.h:36
Generic interface for standard and user written I/O handlers
Definition qwt3d_io.h:24
Functor for reading of native files containing grid data
Definition qwt3d_io_reader.h:14
Base class for all plotting widgets
Definition qwt3d_plot.h:22