lyx_mirror/src/lyxfind.h
Lars Gullik Bjønnes 8283e978f8 ws cleanup
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3803 a592a061-630c-0410-9148-cb99ea01b6c8
2002-03-21 17:27:08 +00:00

24 lines
464 B
C++

// -*- C++ -*-
#ifndef LYXFIND_H
#define LYXFIND_H
#ifdef __GNUG__
#pragma interface
#endif
#include "LString.h"
#include "paragraph.h"
class BufferView;
int LyXReplace(BufferView * bv, string const &, string const &,
bool, bool = true, bool = false,
bool = false, bool = false);
bool LyXFind(BufferView *,
string const & searchstr, bool forward,
bool frominset = false, bool casesens = true,
bool matchwrd = false);
#endif