xref: /haiku/src/apps/resedit/ResWindow.h (revision cfc3fa87da824bdf593eb8b817a83b6376e77935)
1 /*
2  * Copyright (c) 2005-2008, 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 
14 struct entry_ref;
15 
16 class ResWindow : public BWindow {
17 public:
18 								ResWindow(const BRect& rect,
19 									const entry_ref* ref = NULL);
20 	virtual						~ResWindow();
21 
22 	virtual	bool				QuitRequested();
23 };
24 
25 #endif // RESWIN_H
26