Also applied patch #10083 (VC6 build fixes for screenshotgen). git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56343 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
21 lines
530 B
C++
21 lines
530 B
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: screenshot_app.h
|
|
// Purpose: Defines the Application Class
|
|
// Author: Utensil Candel (UtensilCandel@@gmail.com)
|
|
// RCS-ID: $Id$
|
|
// Licence: wxWindows license
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _SCREENSHOT_APP_H_
|
|
#define _SCREENSHOT_APP_H_
|
|
|
|
#include "wx/app.h"
|
|
|
|
class ScreenshotApp : public wxApp
|
|
{
|
|
public:
|
|
virtual bool OnInit();
|
|
};
|
|
|
|
#endif // _SCREENSHOT_APP_H_
|