xref: /haiku/src/apps/installer/EULAWindow.h (revision 1e60bdeab63fa7a57bc9a55b032052e95a18bd2c)
1 /*
2  * Copyright 2013,	Jérôme DUVAL.
3  * All rights reserved. Distributed under the terms of the MIT license.
4  */
5 #ifndef EULA_WINDOW_H
6 #define EULA_WINDOW_H
7 
8 
9 #include <Window.h>
10 
11 
12 class EULAWindow : public BWindow {
13 public:
14 								EULAWindow();
15 	virtual bool				QuitRequested();
16 
17 private:
18 
19 };
20 
21 #endif // EULA_WINDOW_H
22