diff --git a/src/meshlabplugins/meshfilter/refinedialog.h b/src/meshlabplugins/meshfilter/refinedialog.h new file mode 100644 index 000000000..35f54c5e2 --- /dev/null +++ b/src/meshlabplugins/meshfilter/refinedialog.h @@ -0,0 +1,21 @@ +#ifndef REFINE_DIALOG_H +#define REFINE_DIALOG_H + +// for options on refine and decimator +#include +#include "ui_refine.h" + +class RefineDialog : public QDialog, Ui::Dialog { + +Q_OBJECT + +public: + RefineDialog() : QDialog() + { + setupUi( this ); + } + + +}; + +#endif //REFINE_DIALOG_H