Doxygen
Loading...
Searching...
No Matches
PerlModOutputStream Class Reference

Public Member Functions

 PerlModOutputStream (std::ostream &t)
void add (char c)
void add (const QCString &s)
void add (int n)
void add (unsigned int n)

Public Attributes

std::ostream * m_t = nullptr

Detailed Description

Definition at line 48 of file perlmodgen.cpp.

Constructor & Destructor Documentation

◆ PerlModOutputStream()

PerlModOutputStream::PerlModOutputStream ( std::ostream & t)
inline

Definition at line 53 of file perlmodgen.cpp.

53: m_t(&t) { }
std::ostream * m_t

References m_t.

Member Function Documentation

◆ add() [1/4]

void PerlModOutputStream::add ( char c)

Definition at line 61 of file perlmodgen.cpp.

62{
63 *m_t << c;
64}

References m_t.

◆ add() [2/4]

void PerlModOutputStream::add ( const QCString & s)

Definition at line 66 of file perlmodgen.cpp.

67{
68 *m_t << s;
69}

References m_t.

◆ add() [3/4]

void PerlModOutputStream::add ( int n)

Definition at line 71 of file perlmodgen.cpp.

72{
73 *m_t << n;
74}

References m_t.

◆ add() [4/4]

void PerlModOutputStream::add ( unsigned int n)

Definition at line 76 of file perlmodgen.cpp.

77{
78 *m_t << n;
79}

References m_t.

Member Data Documentation

◆ m_t

std::ostream* PerlModOutputStream::m_t = nullptr

Definition at line 51 of file perlmodgen.cpp.

Referenced by add(), add(), add(), add(), and PerlModOutputStream().


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