The TocState
Struct Reference
Declaration
struct HtmlGenerator::TocState { ... }
Public Member Functions Index
void | writeIndent (TextStream &t) |
void | incIndent (TextStream &t, const QCString &text) |
void | decIndent (TextStream &t, const QCString &text) |
Public Member Attributes Index
int | level = 0 |
int | indent = 0 |
int | maxLevel = 0 |
BoolVector | inLi |
Definition at line 352 of file htmlgen.h.
Public Member Functions
decIndent()
| inline |
Definition at line 360 of file htmlgen.h.
360 void decIndent(TextStream &t,const QCString &text) { indent--; writeIndent(t); t << text << "\n"; };
References indent and writeIndent.
incIndent()
| inline |
Definition at line 359 of file htmlgen.h.
359 void incIndent(TextStream &t,const QCString &text) { writeIndent(t); t << text << "\n"; indent++; };
References indent and writeIndent.
writeIndent()
| inline |
Definition at line 358 of file htmlgen.h.
358 void writeIndent(TextStream &t) { for (int i=0;i<indent*2;i++) t << " "; };
Reference indent.
Public Member Attributes
indent
|
inLi
|
Definition at line 357 of file htmlgen.h.
level
maxLevel
The documentation for this struct was generated from the following file:
Generated via doxygen2docusaurus by Doxygen 1.14.0.