xref: /haiku/src/bin/network/ppp_up/PPPStatusWindow.h (revision e81a954787e50e56a7f06f72705b7859b6ab06d1)
1 /*
2  * Copyright 2005, Waldemar Kornewald <wkornew@gmx.net>
3  * Distributed under the terms of the MIT License.
4  */
5 
6 #ifndef STATUS_WINDOW__H
7 #define STATUS_WINDOW__H
8 
9 #include <Window.h>
10 #include "PPPStatusView.h"
11 
12 
13 class PPPStatusWindow : public BWindow {
14 	public:
15 		PPPStatusWindow(BRect frame, ppp_interface_id id);
16 
17 		PPPStatusView *StatusView()
18 			{ return fStatusView; }
19 
20 		virtual bool QuitRequested();
21 
22 	private:
23 		PPPStatusView *fStatusView;
24 };
25 
26 
27 #endif
28