mainwindow.h
338 Bytes
#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