]> git.saurik.com Git - wxWidgets.git/blame_incremental - utils/screenshotgen/src/screenshot_app.h
Fix a crash in wxExecute() in wxMSW too.
[wxWidgets.git] / utils / screenshotgen / src / screenshot_app.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: screenshot_app.h
3// Purpose: Defines the Application Class
4// Author: Utensil Candel (UtensilCandel@@gmail.com)
5// RCS-ID: $Id$
6// Licence: wxWindows licence
7/////////////////////////////////////////////////////////////////////////////
8
9#ifndef _SCREENSHOT_APP_H_
10#define _SCREENSHOT_APP_H_
11
12#include "wx/app.h"
13
14class ScreenshotApp : public wxApp
15{
16public:
17 virtual bool OnInit();
18};
19
20#endif // _SCREENSHOT_APP_H_