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 D��rfler
9 *		Hugo Santos
10 */
11
12#include "NetworkApp.h"
13#include "NetworkWindow.h"
14
15NetworkApp::NetworkApp()
16	: BApplication("application/x-vnd.Haiku-Network")
17{
18}
19
20NetworkApp::~NetworkApp()
21{
22}
23
24void
25NetworkApp::ReadyToRun()
26{
27	fEthWindow = new NetworkWindow();
28	fEthWindow->Show();
29}
30
31int
32main(int argc, char** argv)
33{
34	NetworkApp app;
35	app.Run();
36
37	return 0;
38}
39