1 /* 2 * Copyright 2002-2006, Haiku. All rights reserved. 3 * Distributed under the terms of the MIT License. 4 * 5 * Authors: 6 * DarkWyrm (darkwyrm@earthlink.net) 7 */ 8 #ifndef APR_WINDOW_H 9 #define APR_WINDOW_H 10 11 #include <Application.h> 12 #include <Window.h> 13 #include <Message.h> 14 15 class APRWindow : public BWindow 16 { 17 public: 18 APRWindow(BRect frame); 19 bool QuitRequested(void); 20 }; 21 22 #endif 23