// CPUPGuiApp.h: interface for the CPUPGuiApp class.
//
//////////////////////////////////////////////////////////////////////
#ifndef PUPGUIAPP_H
#define PUPGUIAPP_H
//////////////////////////////////////////////////////////////////////

#include "resource.h"		// main symbols for GUI
#include "pupappdlg.h"
#include "genoapp.h"

class CPUPGuiApp : public GenoApp
{

public:	
	int exit();

	CPUPGuiApp();

	virtual int initialize();

	virtual ~CPUPGuiApp();
	
	///////////////////////////////////////////////////////////////////
	// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CPUPGuiApp)
	public:
	virtual BOOL InitInstance();
	virtual BOOL ExitInstance();
	//}}AFX_VIRTUAL

	 ///////////////////////////////////////////////////////////////////
	// Implementation
	//{{AFX_MSG(CPUPGuiApp)
		// NOTE - the ClassWizard will add and remove member functions here.
		//    DO NOT EDIT what you see in these blocks of generated code !
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()

private:	
	CPUPAppDlg *_pDlg;
};

#endif 