1 // Copyright 2009 The Archiveopteryx Developers <info@aox.org>
2 
3 #ifndef SEARCH_H
4 #define SEARCH_H
5 
6 #include "aoxcommand.h"
7 
8 
9 void dumpSelector( class Selector *, uint l = 0 );
10 
11 
12 class ShowSearch
13     : public AoxCommand
14 {
15 public:
16     ShowSearch( EStringList * );
17 
18     void execute();
19 };
20 
21 
22 #endif
23