example/DemoGUI/mainwindow.h
author cgandhi
Thu, 23 Sep 2010 17:15:03 +0530
changeset 23 574948b60dab
parent 16 b78fa4cdbf2b
permissions -rw-r--r--
updating the lastfm music plugins and adding the smfhelp.chm

#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QMainWindow>
#include "HomeView.h"

namespace Ui {
    class MainWindow;
}

class MainWindow : public QMainWindow {
    Q_OBJECT
public:
    MainWindow(QWidget *parent = 0);
    ~MainWindow();

protected:
    void changeEvent(QEvent *e);

private:
    Ui::MainWindow *ui;
    HomeView* Ptr2HomeView;
};

#endif // MAINWINDOW_H