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