Go to the documentation of this file.00001
00002
00003
00004
00005
00008
00009 #ifndef lgrExportDialog_H_
00010 #define lgrExportDialog_H_
00011
00012 #include "lgrGui.h"
00013
00014 #include <QtGui/QDialog>
00015
00016 namespace MAKLogger
00017 {
00018
00019 class DT_DLL_LGRGUI DtLgrExportDialog : public QDialog
00020 {
00021 public:
00022
00023 DtLgrExportDialog(QWidget* parent);
00024 virtual ~DtLgrExportDialog();
00025
00027 virtual QString getDestination() const = 0;
00028
00031 virtual bool deleteAfterClose() const;
00032
00033 };
00034 }
00035
00036 #endif