/* * Copyright (c) 2007, Haiku, Inc. * Distributed under the terms of the MIT license. * * Author: * Ɓukasz 'Sil2100' Zemczak */ #ifndef PACKAGE_WINDOW_H #define PACKAGE_WINDOW_H #include struct entry_ref; class PackageWindow : public BWindow { public: PackageWindow(const entry_ref* ref); virtual ~PackageWindow(); virtual void Quit(); }; #endif // PACKAGE_WINDOW_H