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 #ifndef _APP_H 9 #define _APP_H 10 11 12 #include <Application.h> 13 14 15 class App : public BApplication { 16 public: 17 App(); 18 virtual ~App(); 19 20 virtual void ReadyToRun(); 21 virtual bool QuitRequested(); 22 23 protected: 24 BWindow* fMainWindow; 25 }; 26 27 #endif /* _APP_H */ 28