mywidget.hpp

Go to the documentation of this file.
00001 
00004 #ifndef _MYWIDGET_HPP_
00005 #define _MYWIDGET_HPP_
00006 
00007 #include <QtGui>
00008 #include <QPointF>
00009 #include <iostream>
00010 
00012 class mywidget : public QWidget
00013 {
00014     Q_OBJECT
00015 
00016 public:
00017 
00019     mywidget(QWidget *obj=0);
00020 
00022     virtual void paintEvent(QPaintEvent *e);
00023 
00024 };
00025 
00026 #endif