00001 00002 // Name: wxFlickrApp.h 00003 // Purpose: 00004 // Author: 00005 // Modified by: 00006 // Created: 00007 // RCS-ID: 00008 // Copyright: (C)2005 00009 // Licence: wxWindows 00010 // Generated with wxWinWizard by KoanSoftware.com 00012 00013 #ifndef wxFlickrApp_H 00014 #define wxFlickrApp_H 00015 00016 // Define a new application type, each program should derive a class from wxApp 00017 class wxFlickrApp : public wxApp 00018 { 00019 public: 00020 wxFlickrApp(); 00021 virtual ~wxFlickrApp(); 00022 00023 // override base class virtuals 00024 // ---------------------------- 00025 00026 // this one is called on application startup and is a good place for the app 00027 // initialization (doing it here and not in the ctor allows to have an error 00028 // return: if OnInit() returns false, the application terminates) 00029 virtual bool OnInit(); 00030 }; 00031 00032 DECLARE_APP(wxFlickrApp) 00033 00034 #endif // wxFlickrApp_H 00035 00036