/* * Copyright (c) 2005-2010, Haiku, Inc. * Distributed under the terms of the MIT license. * * Author: * DarkWyrm */ #ifndef RESWIN_H #define RESWIN_H #include struct entry_ref; class ResView; class ResWindow : public BWindow { public: ResWindow(const BRect& rect, const entry_ref* ref = NULL); virtual ~ResWindow(); virtual bool QuitRequested(); private: ResView *fView; }; #endif // RESWIN_H