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 47 of file perlmodgen.cpp.

Constructor & Destructor Documentation

◆ PerlModOutputStream()

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

Definition at line 52 of file perlmodgen.cpp.

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

References m_t.

Member Function Documentation

◆ add() [1/4]

void PerlModOutputStream::add ( char c)

Definition at line 60 of file perlmodgen.cpp.

61{
62 *m_t << c;
63}

References m_t.

◆ add() [2/4]

void PerlModOutputStream::add ( const QCString & s)

Definition at line 65 of file perlmodgen.cpp.

66{
67 *m_t << s;
68}

References m_t.

◆ add() [3/4]

void PerlModOutputStream::add ( int n)

Definition at line 70 of file perlmodgen.cpp.

71{
72 *m_t << n;
73}

References m_t.

◆ add() [4/4]

void PerlModOutputStream::add ( unsigned int n)

Definition at line 75 of file perlmodgen.cpp.

76{
77 *m_t << n;
78}

References m_t.

Member Data Documentation

◆ m_t

std::ostream* PerlModOutputStream::m_t = nullptr

Definition at line 50 of file perlmodgen.cpp.

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


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