diff --git a/snapshotview.h b/snapshotview.h new file mode 100644 --- /dev/null +++ b/snapshotview.h @@ -0,0 +1,37 @@ +#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