xref: /haiku/src/apps/packageinstaller/PackageWindow.h (revision 4e3137c085bae361922078f123dceb92da700640)
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 const uint32 P_WINDOW_QUIT		=	'PiWq';
18 
19 
20 class PackageWindow : public BWindow {
21 public:
22 								PackageWindow(const entry_ref* ref);
23 	virtual						~PackageWindow();
24 
25 	virtual	void				Quit();
26 };
27 
28 
29 #endif // PACKAGE_WINDOW_H
30 
31