mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 06:20:28 +00:00
3566eaa406
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6676 a592a061-630c-0410-9148-cb99ea01b6c8
26 lines
547 B
C++
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
|