Sophie

Sophie

distrib > Mandriva > cooker > i586 > by-pkgid > 76bdad05b5dca2a491582dbec0713d55 > files > 208

libqwt-devel-6.0.1-2.i586.rpm

#ifndef _MAIN_WINDOW_H_
#define _MAIN_WINDOW_H_

#include <qmainwindow.h>

class Plot;
class Panel;
class QLabel;

class MainWindow: public QMainWindow
{
public:
    MainWindow(QWidget *parent = NULL);
    virtual bool eventFilter(QObject *, QEvent *);

private:
    Plot *d_plot;
    Panel *d_panel;
    QLabel *d_frameCount;
};

#endif