1 /* 2 * Copyright 2008, Haiku Inc. All rights reserved. 3 * Distributed under the terms of the MIT License. 4 * 5 * Authors: 6 * Alexandre Deckner <alex@zappotek.com> 7 */ 8 9 #ifndef _APP_H 10 #define _APP_H 11 12 #include <Application.h> 13 14 class App: public BApplication { 15 public: 16 App(); 17 virtual ~App(); 18 19 virtual void ReadyToRun(); 20 virtual void AboutRequested(); 21 virtual bool QuitRequested(); 22 23 protected: 24 BWindow* fMainWindow; 25 }; 26 27 #endif /* _APP_H */ 28