xref: /haiku/src/apps/resedit/ResWindow.h (revision b2537f99cdffc40818b65879120ecae67b29d7d9)
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