xref: /haiku/src/apps/text_search/TextSearch.cpp (revision cbe0a0c436162d78cc3f92a305b64918c839d079)
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