refine dialog code

This commit is contained in:
Paolo Cignoni cignoni 2005-12-17 13:32:16 +00:00
parent b1c1f64191
commit 1bafd80daf

View File

@ -0,0 +1,21 @@
#ifndef REFINE_DIALOG_H
#define REFINE_DIALOG_H
// for options on refine and decimator
#include <QDialog>
#include "ui_refine.h"
class RefineDialog : public QDialog, Ui::Dialog {
Q_OBJECT
public:
RefineDialog() : QDialog()
{
setupUi( this );
}
};
#endif //REFINE_DIALOG_H