git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40895 a95241bf-73f2-0310-859d-f6bbb57e9c96
24 lines
394 B
C++
24 lines
394 B
C++
/*
|
|
* Copyright 2011, Haiku, Inc. All rights reserved.
|
|
* Copyright 2011, Clemens Zeidler <[email protected]>
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
|
|
|
|
#include <Application.h>
|
|
|
|
#include "ConfigWindow.h"
|
|
|
|
|
|
int
|
|
main(int argc, char** argv)
|
|
{
|
|
BApplication app("application/x-vnd.Haiku-Mail");
|
|
|
|
BWindow* window = new ConfigWindow;
|
|
window->Show();
|
|
|
|
app.Run();
|
|
return 0;
|
|
}
|