1 /* 2 * Copyright 2006, Haiku. 3 * Distributed under the terms of the MIT License. 4 * 5 * Authors: 6 * Stephan Aßmus <superstippi@gmx.de> 7 */ 8 #ifndef APP_H 9 #define APP_H 10 11 #include <Application.h> 12 #include <List.h> 13 14 class MainWindow; 15 16 class App : public BApplication { 17 public: 18 App(); 19 virtual ~App(); 20 21 virtual bool QuitRequested(); 22 virtual void ReadyToRun(); 23 virtual void MessageReceived(BMessage* message); 24 virtual void AboutRequested(); 25 26 private: 27 }; 28 29 #endif // APP_H 30