xref: /haiku/src/preferences/network/NetworkWindow.h (revision 079c69cbfd7cd3c97baae91332251c8388a8bb02)
1 /*
2  * Copyright 2004-2007 Haiku Inc. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  * Author:
6  *		Andre Alves Garzia, andre@andregarzia.com
7  * With code from:
8  *		Axel Dorfler
9  *		Hugo Santos
10  */
11 #ifndef NETWORK_WINDOW_H
12 #define NETWORK_WINDOW_H
13 
14 #include <Window.h>
15 #include "EthernetSettingsView.h"
16 
17 class NetworkWindow : public BWindow {
18 	public:
19 		NetworkWindow();
20 		virtual ~NetworkWindow();
21 		virtual bool QuitRequested();
22 		virtual void MessageReceived(BMessage* mesage);
23 
24 		private:
25 			EthernetSettingsView *fEthView;
26 
27 };
28 
29 
30 #endif /* NETWORK_WINDOW_H */
31