Skip to main content

The PerlModOutputStream Class Reference

Declaration

class PerlModOutputStream { ... }

Public Constructors Index

PerlModOutputStream (std::ostream &t)

Public Member Functions Index

voidadd (char c)
voidadd (const QCString &s)
voidadd (int n)
voidadd (unsigned int n)

Public Member Attributes Index

std::ostream *m_t = nullptr

Definition at line 48 of file perlmodgen.cpp.

Public Constructors

PerlModOutputStream()

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

Definition at line 53 of file perlmodgen.cpp.

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

Reference m_t.

Public Member Functions

add()

void PerlModOutputStream::add (char c)

Definition at line 55 of file perlmodgen.cpp.

62{
63 *m_t << c;
64}

Reference m_t.

add()

void PerlModOutputStream::add (const QCString & s)

Definition at line 56 of file perlmodgen.cpp.

67{
68 *m_t << s;
69}

Reference m_t.

add()

void PerlModOutputStream::add (int n)

Definition at line 57 of file perlmodgen.cpp.

72{
73 *m_t << n;
74}

Reference m_t.

add()

void PerlModOutputStream::add (unsigned int n)

Definition at line 58 of file perlmodgen.cpp.

76void PerlModOutputStream::add(unsigned int n)
77{
78 *m_t << n;
79}

Reference m_t.

Public Member Attributes

m_t

std::ostream* PerlModOutputStream::m_t = nullptr

Definition at line 51 of file perlmodgen.cpp.

51 std::ostream *m_t = nullptr;

Referenced by add, add, add, add and PerlModOutputStream.


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


Generated via doxygen2docusaurus by Doxygen 1.14.0.