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

Public Member Functions

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

Public Attributes

std::ostream * m_t = nullptr

Detailed Description

Definition at line 52 of file perlmodgen.cpp.

Constructor & Destructor Documentation

◆ PerlModOutputStream()

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

Definition at line 57 of file perlmodgen.cpp.

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

References m_t.

Member Function Documentation

◆ add() [1/4]

◆ add() [2/4]

void PerlModOutputStream::add ( const DString & s)

Definition at line 70 of file perlmodgen.cpp.

71{
72 *m_t << s;
73}

References m_t.

◆ add() [3/4]

void PerlModOutputStream::add ( int n)

Definition at line 75 of file perlmodgen.cpp.

76{
77 *m_t << n;
78}

References m_t.

◆ add() [4/4]

void PerlModOutputStream::add ( unsigned int n)

Definition at line 80 of file perlmodgen.cpp.

81{
82 *m_t << n;
83}

References m_t.

Member Data Documentation

◆ m_t

std::ostream* PerlModOutputStream::m_t = nullptr

Definition at line 55 of file perlmodgen.cpp.

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


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