1 /* 2 * Copyright (c) 2005-2006, Haiku, Inc. 3 * Distributed under the terms of the MIT license. 4 * 5 * Author: 6 * DarkWyrm <darkwyrm@earthlink.net> 7 */ 8 #ifndef RESWIN_H 9 #define RESWIN_H 10 11 #include <Window.h> 12 13 class ResWindow : public BWindow 14 { 15 public: 16 ResWindow(const BRect &rect, 17 const entry_ref *ref=NULL); 18 ~ResWindow(void); 19 bool QuitRequested(void); 20 }; 21 22 #endif 23