Newer
Older
Import / research / 3d-z-maps / phong-tesselation / MainWindow.h
@John John on 29 Dec 2020 697 bytes bulk import from macbookpro checkouts
/*
 * =====================================================================================
 *
 *       Filename:  MainWindow.h
 *
 *    Description:  
 *
 *        Version:  1.0
 *        Created:  16/09/2011 21:47:52
 *       Revision:  none
 *       Compiler:  gcc
 *
 *         Author:  John Ryland (jryland), jryland@xiaofrog.com
 *        Company:  InvertedLogic
 *
 * =====================================================================================
 */

#ifndef __MAIN_WINDOW_H__
#define __MAIN_WINDOW_H__


#include <QWidget>


class MainWindow : public QWidget
{
public:
    MainWindow();
    ~MainWindow();

    void paintEvent(QPaintEvent *pe);
};


#endif //  __MAIN_WINDOW_H__