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