Subversion Repositories public

Rev

Rev 276 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

//
// C++ Interface:
//
// Description:
//
//
// Author: Andreas Theofilu <andreas@theosys.at>, (C) 2009
//
// Copyright: See COPYING file that comes with this distribution
//
//

#ifndef SHAPEWIDGET_H
#define SHAPEWIDGET_H

#include <QDialog>
#include "ui_shapewidgetbase.h"

class shapeWidget : public QDialog, private Ui::shapeWidgetBase
{
                Q_OBJECT

        public:
                shapeWidget (QWidget* parent = 0, Qt::WFlags fl = 0);
                ~shapeWidget();
                /*$PUBLIC_FUNCTIONS$*/

        public slots:
                /*$PUBLIC_SLOTS$*/
                virtual void accept();
};

#endif