1 /* 2 * Copyright (c) 2007, Haiku, Inc. 3 * Distributed under the terms of the MIT license. 4 * 5 * Author: 6 * Łukasz 'Sil2100' Zemczak <sil2100@vexillium.org> 7 */ 8 #ifndef PACKAGE_WINDOW_H 9 #define PACKAGE_WINDOW_H 10 11 12 #include <Window.h> 13 14 15 struct entry_ref; 16 17 18 class PackageWindow : public BWindow { 19 public: 20 PackageWindow(const entry_ref* ref); 21 virtual ~PackageWindow(); 22 23 virtual void Quit(); 24 }; 25 26 27 #endif // PACKAGE_WINDOW_H 28 29