← index
Qt.Projects/source/desktop/005.paint/main_window.hpp
Source: Qt.Projects/source/desktop/005.paint/main_window.hpp
#ifndef __MAIN_WINDOW_H__
#define __MAIN_WINDOW_H__

#include<QMainWindow>


class MainWindow : public QMainWindow {
    Q_OBJECT
public:
    explicit MainWindow(QWidget *parent = 0);
    void paintEvent(QPaintEvent *painter);
};


#endif