/*
* =====================================================================================
*
* 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__