/* * Datei: LocaleKit3.h Projekt: LocaleKit3 * Autor: Markus Maier Datum: 06.06.2005 * * Erstellt fuer zemag #3 * 2005, Urheberrecht beim Autor */
#ifndef
_MYAPP_H_#define
_MYAPP_H_// Zeta Includes
#include
<app/Application.h>// Forwaerts Deklaration
class
MyWindow;//-----------------------------------------------------------------------------
// Klassen Definition
class
MyApp :public
BApplication {public
: MyApp();// Constructor
virtual
~MyApp();// Destructor
virtual
void
AboutRequested(void
);private
: MyWindow* fWindow; };#endif
// _MYAPP_H_