www.pudn.com > Phone.rar > project2.h
/////////////////////////////////////////////////////////////////////////////
// Name: project2.h
// Purpose:
// Author:
// Modified by:
// Created: 18/05/2007 09:35:12
// RCS-ID:
// Copyright:
// Licence:
/////////////////////////////////////////////////////////////////////////////
#ifndef _PROJECT2_H_
#define _PROJECT2_H_
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma interface "project2.h"
#endif
/*!
* Includes
*/
////@begin includes
#include "wx/image.h"
#include "myframe.h"
////@end includes
/*!
* Forward declarations
*/
////@begin forward declarations
////@end forward declarations
/*!
* Control identifiers
*/
////@begin control identifiers
////@end control identifiers
/*!
* Project2App class declaration
*/
class Project2App: public wxApp
{
DECLARE_CLASS( Project2App )
DECLARE_EVENT_TABLE()
public:
/// Constructor
Project2App();
/// Initialises member variables
void Init();
/// Initialises the application
virtual bool OnInit();
/// Called on exit
virtual int OnExit();
////@begin Project2App event handler declarations
////@end Project2App event handler declarations
////@begin Project2App member function declarations
////@end Project2App member function declarations
////@begin Project2App member variables
////@end Project2App member variables
};
/*!
* Application instance declaration
*/
////@begin declare app
DECLARE_APP(Project2App)
////@end declare app
#endif
// _PROJECT2_H_