xref: /haiku/src/bin/network/ppp_up/ConnectionWindow.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 CONNECTION_WINDOW__H
7 #define CONNECTION_WINDOW__H
8 
9 #include <Window.h>
10 #include "ConnectionView.h"
11 
12 
13 class ConnectionWindow : public BWindow {
14 	public:
15 		ConnectionWindow(BRect frame, const BString& interfaceName);
16 
17 		virtual bool QuitRequested();
18 
19 	private:
20 		ConnectionView *fConnectionView;
21 };
22 
23 
24 #endif
25