Complete the export process

This commit is contained in:
hooper114 2009-09-20 15:40:46 +00:00
parent 318d2d4eed
commit c26edb1302
6 changed files with 188 additions and 63 deletions

View file

@ -21,6 +21,7 @@
#define EXPORTWINDOW_H
#include "ui_extExport.h"
#include "barcodeitem.h"
class ExportWindow : public QDialog, private Ui::ExportDialog
{
@ -29,7 +30,13 @@ class ExportWindow : public QDialog, private Ui::ExportDialog
public:
ExportWindow();
~ExportWindow();
BarcodeItem *barcode;
QString output_data;
private slots:
void quit_now();
void process();
void get_directory();
};
#endif