1 /* 2 * Copyright 2009-2010 Haiku, Inc. 3 * Distributed under the terms of the MIT License. 4 * 5 * Authors: 6 * Ankur Sethi (get.me.ankur@gmail.com) 7 * Clemens Zeidler <haiku@clemens-zeidler.de> 8 */ 9 #include <Application.h> 10 11 #include "SearchWindow.h" 12 13 14 int main() 15 { 16 BApplication app("application/x-vnd.Haiku-FullTextSearch"); 17 18 SearchWindow* window = new SearchWindow(BRect(50, 50, 500, 250)); 19 window->Show(); 20 21 app.Run(); 22 23 return 0; 24 } 25