mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
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<EFBFBD>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
|