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