1 /* 2 * Copyright 2011, Haiku, Inc. All rights reserved. 3 * Copyright 2011, Clemens Zeidler <haiku@clemens-zeidler.de> 4 * Distributed under the terms of the MIT License. 5 */ 6 7 8 #include <Application.h> 9 10 #include "ConfigWindow.h" 11 12 13 int 14 main(int argc, char** argv) 15 { 16 BApplication app("application/x-vnd.Haiku-Mail"); 17 18 BWindow* window = new ConfigWindow; 19 window->Show(); 20 21 app.Run(); 22 return 0; 23 } 24