]>
Commit | Line | Data |
---|---|---|
0d5eda9c FM |
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 license | |
7 | ///////////////////////////////////////////////////////////////////////////// | |
8 | ||
f978831f BP |
9 | #ifndef _SCREENSHOT_APP_H_ |
10 | #define _SCREENSHOT_APP_H_ | |
0d5eda9c | 11 | |
f978831f | 12 | #include "wx/app.h" |
0d5eda9c | 13 | |
4bae10bd | 14 | class ScreenshotApp : public wxApp |
0d5eda9c FM |
15 | { |
16 | public: | |
17 | virtual bool OnInit(); | |
18 | }; | |
19 | ||
f978831f | 20 | #endif // _SCREENSHOT_APP_H_ |