libroot/posix/stdio: Remove unused portions.
[haiku.git] / src / apps / resedit / ResWindow.h
blobfc36d155ccdf9a787f25613e5d989372bc252cca
1 /*
2 * Copyright (c) 2005-2010, Haiku, Inc.
3 * Distributed under the terms of the MIT license.
5 * Author:
6 * DarkWyrm <darkwyrm@gmail.com>
7 */
8 #ifndef RESWIN_H
9 #define RESWIN_H
11 #include <Window.h>
13 struct entry_ref;
14 class ResView;
16 class ResWindow : public BWindow {
17 public:
18 ResWindow(const BRect& rect,
19 const entry_ref* ref = NULL);
20 virtual ~ResWindow();
22 virtual bool QuitRequested();
23 private:
24 ResView *fView;
27 #endif // RESWIN_H