XRC: make wxStaticText's wrap property a dimension.
[wxWidgets.git] / utils / screenshotgen / src / screenshot_app.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: screenshot_app.h
3 // Purpose: Defines the Application Class
4 // Author: Utensil Candel (UtensilCandel@@gmail.com)
5 // Licence: wxWindows licence
6 /////////////////////////////////////////////////////////////////////////////
7
8 #ifndef _SCREENSHOT_APP_H_
9 #define _SCREENSHOT_APP_H_
10
11 #include "wx/app.h"
12
13 class ScreenshotApp : public wxApp
14 {
15 public:
16 virtual bool OnInit();
17 };
18
19 #endif // _SCREENSHOT_APP_H_