]> git.lyx.org Git - lyx.git/blob - src/lyxfind.h
fix typo that put too many include paths for most people
[lyx.git] / src / lyxfind.h
1 // -*- C++ -*-
2 #ifndef LYXFIND_H
3 #define LYXFIND_H
4
5 #ifdef __GNUG__
6 #pragma interface
7 #endif
8
9 #include "LString.h"
10 #include "paragraph.h"
11
12 class BufferView;
13
14 int LyXReplace(BufferView * bv, string const &, string const &,
15                bool, bool = true, bool = false,
16                bool = false, bool = false);
17
18 bool LyXFind(BufferView *,
19              string const & searchstr, bool forward,
20              bool frominset = false, bool casesens = true,
21              bool matchwrd = false);
22
23 #endif