xref: /haiku/src/add-ons/translators/hvif/HVIFMain.cpp (revision 2c69b5b6c0e7b481a0c43366a1942a6055cbb864)
1 /*
2  * Copyright 2009, Haiku, Inc.
3  * Distributed under the terms of the MIT license.
4  *
5  * Authors:
6  *		Michael Lotz, mmlr@mlotz.ch
7  */
8 
9 #include <Application.h>
10 #include "HVIFTranslator.h"
11 #include "TranslatorWindow.h"
12 
13 int
14 main(int argc, char *argv[])
15 {
16 	BApplication application("application/x-vnd.Haiku.HVIFTranslator");
17 	if (LaunchTranslatorWindow(new HVIFTranslator, "HVIF Settings",
18 			BRect(0, 0, 250, 150)) != B_OK)
19 		return 1;
20 
21 	application.Run();
22 	return 0;
23 }
24