mirror of
https://github.com/zint/zint
synced 2024-11-16 20:57:25 +13:00
19 lines
273 B
C
19 lines
273 B
C
|
#ifndef SEQUENCEWINDOW_H
|
||
|
#define SEQUENCEWINDOW_H
|
||
|
|
||
|
#include "ui_extSequence.h"
|
||
|
|
||
|
class SequenceWindow : public QDialog, private Ui::SequenceDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
SequenceWindow();
|
||
|
~SequenceWindow();
|
||
|
|
||
|
private slots:
|
||
|
void quit_now();
|
||
|
void reset_preview();
|
||
|
};
|
||
|
|
||
|
#endif
|