diff --git a/snapshot.h b/snapshot.h new file mode 100644 --- /dev/null +++ b/snapshot.h @@ -0,0 +1,32 @@ +#ifndef SNAPSHOT_H +#define SNAPSHOT_H + +#include +#include +#include +#include + +class SnapShotView; + +class SnapShot : public QObject +{ + Q_OBJECT + +public: + SnapShot(QMainWindow* parent, QString name); + + // QString _name; + QVector> data; + QAction* menuAction(); + +public slots: + void show(); + void hide(); + +private: + QAction _menuAction; + QMainWindow* mainWindow; + SnapShotView* view; +}; + +#endif /* SNAPSHOT_H */