]> git.lyx.org Git - lyx.git/blob - src/sgml.h
remove noload/don't typeset
[lyx.git] / src / sgml.h
1 /**
2  * \file sgml.h
3  * Copyright 2002 the LyX Team
4  * Read the file COPYING
5  *
6  * \author José Matos
7  * \author John Levon <levon@movementarian.org>
8  */
9
10 #ifndef SGML_H
11 #define SGML_H
12  
13 #include <config.h>
14
15 #include "LString.h"
16  
17 #include <algorithm>
18  
19 namespace sgml {
20
21 /**
22  * Escape the given character if necessary
23  * to an SGML entity. The bool return is true
24  * if it was a whitespace character.
25  */
26 std::pair<bool, string> escapeChar(char c);
27
28 }
29
30 #endif // SGML_H