Files
wxWidgets/utils/screenshotgen/src/screenshot_app.h
Vadim Zeitlin 526954c596 Globally use "wxWindows licence" consistently.
Use "wxWindows licence" and not "wxWidgets licence" (the latter doesn't
exist) and consistently spell "licence" using British spelling.

See #12165.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64940 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2010-07-13 13:29:13 +00:00

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 licence
/////////////////////////////////////////////////////////////////////////////
#ifndef _SCREENSHOT_APP_H_
#define _SCREENSHOT_APP_H_
#include "wx/app.h"
class ScreenshotApp : public wxApp
{
public:
virtual bool OnInit();
};
#endif // _SCREENSHOT_APP_H_