Doxygen
Loading...
Searching...
No Matches
EclipseHelp::Private Struct Reference
+ Collaboration diagram for EclipseHelp::Private:

Public Member Functions

void indent ()
 
void closedTag ()
 
void openedTag ()
 

Public Attributes

int depth = 0
 
bool endtag = false
 
int openTags = 0
 
std::ofstream tocstream
 
QCString pathprefix
 

Detailed Description

Definition at line 23 of file eclipsehelp.cpp.

Member Function Documentation

◆ closedTag()

void EclipseHelp::Private::closedTag ( )
inline

Definition at line 40 of file eclipsehelp.cpp.

41 {
42 if (endtag)
43 {
44 tocstream << "/>\n";
45 endtag = FALSE;
46 }
47 }
#define FALSE
Definition qcstring.h:34
std::ofstream tocstream

References endtag, FALSE, and tocstream.

◆ indent()

void EclipseHelp::Private::indent ( )
inline

Definition at line 33 of file eclipsehelp.cpp.

34 {
35 for (int i=0; i<depth; i++)
36 {
37 tocstream << " ";
38 }
39 }

References depth, and tocstream.

◆ openedTag()

void EclipseHelp::Private::openedTag ( )
inline

Definition at line 48 of file eclipsehelp.cpp.

49 {
50 if (endtag)
51 {
52 tocstream << ">\n";
53 endtag = FALSE;
54 ++openTags;
55 }
56 }

References endtag, FALSE, openTags, and tocstream.

Member Data Documentation

◆ depth

int EclipseHelp::Private::depth = 0

Definition at line 25 of file eclipsehelp.cpp.

Referenced by indent().

◆ endtag

bool EclipseHelp::Private::endtag = false

Definition at line 26 of file eclipsehelp.cpp.

Referenced by closedTag(), and openedTag().

◆ openTags

int EclipseHelp::Private::openTags = 0

Definition at line 27 of file eclipsehelp.cpp.

Referenced by openedTag().

◆ pathprefix

QCString EclipseHelp::Private::pathprefix

Definition at line 30 of file eclipsehelp.cpp.

◆ tocstream

std::ofstream EclipseHelp::Private::tocstream

Definition at line 29 of file eclipsehelp.cpp.

Referenced by closedTag(), indent(), and openedTag().


The documentation for this struct was generated from the following file: