mirror of
https://github.com/zint/zint
synced 2024-11-16 20:57:25 +13:00
25 lines
337 B
C++
25 lines
337 B
C++
#ifndef DATAWINDOW_H
|
|
#define DATAWINDOW_H
|
|
|
|
#include "ui_extData.h"
|
|
|
|
class DataWindow : public QDialog, private Ui::DataDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
DataWindow();
|
|
DataWindow(QString input);
|
|
~DataWindow();
|
|
int Valid;
|
|
QString DataOutput;
|
|
|
|
private slots:
|
|
void quit_now();
|
|
void clear_data();
|
|
void okay();
|
|
void from_file();
|
|
};
|
|
|
|
#endif
|