Definition at line 3713 of file context.cpp.
TextGeneratorHtml::TextGeneratorHtml |
( |
FTextStream & |
ts, |
|
|
const QCString & |
relPath |
|
) |
| |
|
inline |
void TextGeneratorHtml::writeBreak |
( |
int |
indent | ) |
const |
|
inlinevirtual |
void TextGeneratorHtml::writeLink |
( |
const char * |
ref, |
|
|
const char * |
f, |
|
|
const char * |
anchor, |
|
|
const char * |
name |
|
) |
| const |
|
inlinevirtual |
void TextGeneratorHtml::writeString |
( |
const char * |
s, |
|
|
bool |
keepSpaces |
|
) |
| const |
|
inlinevirtual |
Implements TextGeneratorIntf.
Definition at line 3718 of file context.cpp.
References convertToHtml(), and m_ts.
{
if (s==0) return;
if (keepSpaces)
{
const char *p=s;
char c;
while ((c=*p++))
{
switch(c)
{
case '<':
m_ts <<
"<";
break;
case '>':
m_ts <<
">";
break;
case '\'':
m_ts <<
"'";
break;
case '"':
m_ts <<
""";
break;
case '&':
m_ts <<
"&";
break;
case ' ':
m_ts <<
" ";
break;
}
}
}
else
{
}
}
QCString TextGeneratorHtml::m_relPath |
|
private |
The documentation for this class was generated from the following file: