fat: Greatly simplify and clean up dosfs_get_file_map().
[haiku.git] / src / preferences / network / Network.cpp
blob84a6b9f8ba9ca2b23ed4a5cef6f427ba2b155837
1 /*
2 * Copyright 2004-2015 Haiku Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 */
7 #include <Alert.h>
8 #include <Application.h>
9 #include <Catalog.h>
10 #include <Locale.h>
11 #include <Window.h>
13 #include "NetworkWindow.h"
16 static const char* kSignature = "application/x-vnd.Haiku-Network";
19 class Application : public BApplication {
20 public:
21 Application();
23 public:
24 virtual void ReadyToRun();
28 Application::Application()
30 BApplication(kSignature)
35 void
36 Application::ReadyToRun()
38 NetworkWindow* window = new NetworkWindow();
39 window->Show();
43 // #pragma mark -
46 int
47 main()
49 Application* app = new Application();
50 app->Run();
51 delete app;
52 return 0;