Skip to main content

The Private Struct Reference

Declaration

struct EclipseHelp::Private { ... }

Public Member Functions Index

voidindent ()
voidclosedTag ()
voidopenedTag ()

Public Member Attributes Index

intdepth = 0
boolendtag = false
intopenTags = 0
std::ofstreamtocstream
QCStringpathprefix

Definition at line 23 of file eclipsehelp.cpp.

Public Member Functions

closedTag()

void EclipseHelp::Private::closedTag ()
inline

Definition at line 40 of file eclipsehelp.cpp.

40 void closedTag()
41 {
42 if (endtag)
43 {
44 tocstream << "/>\n";
46 }
47 }

References endtag, FALSE and tocstream.

indent()

void EclipseHelp::Private::indent ()
inline

Definition at line 33 of file eclipsehelp.cpp.

33 void indent()
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.

48 void openedTag()
49 {
50 if (endtag)
51 {
52 tocstream << ">\n";
54 ++openTags;
55 }
56 }

References endtag, FALSE, openTags and tocstream.

Public Member Attributes

depth

int EclipseHelp::Private::depth = 0

Definition at line 25 of file eclipsehelp.cpp.

25 int depth = 0;

Referenced by indent.

endtag

bool EclipseHelp::Private::endtag = false

Definition at line 26 of file eclipsehelp.cpp.

26 bool endtag = false;

Referenced by closedTag and openedTag.

openTags

int EclipseHelp::Private::openTags = 0

Definition at line 27 of file eclipsehelp.cpp.

27 int openTags = 0;

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.

29 std::ofstream tocstream;

Referenced by closedTag, indent and openedTag.


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


Generated via doxygen2docusaurus by Doxygen 1.14.0.