lyx_mirror/src/text_funcs.h
John Levon 3566eaa406 move transposeChars
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6676 a592a061-630c-0410-9148-cb99ea01b6c8
2003-04-02 00:51:46 +00:00

26 lines
547 B
C++

/**
* \file text_funcs.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Lars Gullik Bjønnes
* \author John Levon
*
* Full author contact details are available in file CREDITS
*
* This file contains some utility functions for actually mutating
* the text contents of a document
*/
#ifndef TEXT_FUNCS_H
#define TEXT_FUNCS_H
#include <config.h>
class LyXText;
class LyXCursor;
void transposeChars(LyXText & text, LyXCursor const & cursor);
#endif // TEXT_FUNCS_H