#ifndef SNAPSHOTVIEW_H #define SNAPSHOTVIEW_H #include #include #include #include #include "plot.h" class SnapShotView; struct SnapShot { QString name; QVector> data; SnapShotView* view; }; namespace Ui { class SnapShotView; } class SnapShotView : public QMainWindow { Q_OBJECT public: explicit SnapShotView(QWidget *parent, SnapShot* snapShot); ~SnapShotView(); private: Ui::SnapShotView *ui; QList curves; SnapShot* _snapShot; }; #endif // SNAPSHOTVIEW_H