xref: /haiku/src/add-ons/translators/webp/main.cpp (revision e4f8681e796d3f459a35cebfef20b2c27713e06a)
1 /*
2  * Copyright 2010, Haiku. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		Philippe Houdoin
7  */
8 
9 
10 #include <Application.h>
11 
12 #include "WebPTranslator.h"
13 #include "TranslatorWindow.h"
14 
15 int
16 main()
17 {
18 	BApplication app("application/x-vnd.Haiku-WebPTranslator");
19 	if (LaunchTranslatorWindow(new WebPTranslator,
20 		"WebP Settings") != B_OK)
21 		return 1;
22 
23 	app.Run();
24 	return 0;
25 }
26