xref: /haiku/src/apps/text_search/TextSearch.cpp (revision 508f54795f39c3e7552d87c95aae9dd8ec6f505b)
1 /*
2  * Copyright (c) 1998-2007 Matthijs Hollemans
3  * All rights reserved. Distributed under the terms of the MIT License.
4  */
5 
6 #include "GrepApp.h"
7 
8 #include <TrackerAddOnAppLaunch.h>
9 
10 #include "GlobalDefs.h"
11 
12 
13 int
14 main()
15 {
16 	GrepApp app;
17 	app.Run();
18 	return 0;
19 }
20 
21