xref: /haiku/src/apps/packageinstaller/UninstallWindow.h (revision a81f65eae5f9a0577ae33a0293c3a04acf36aa6d)
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 UNINSTALLWINDOW_H
9 #define UNINSTALLWINDOW_H
10 
11 #include "UninstallView.h"
12 #include <Window.h>
13 #include <Entry.h>
14 
15 
16 class UninstallWindow : public BWindow {
17 public:
18 								UninstallWindow();
19 	virtual	void				Quit();
20 };
21 
22 #endif // UNINSTALLWINDOW_H
23