Doxygen
PerlModOutputStream类 参考

Public 成员函数

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

Public 属性

std::ostream & m_t
 

详细描述

在文件 perlmodgen.cpp49 行定义.

构造及析构函数说明

◆ PerlModOutputStream()

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

在文件 perlmodgen.cpp55 行定义.

55 : m_t(t) { }

成员函数说明

◆ add() [1/4]

void PerlModOutputStream::add ( char  c)

在文件 perlmodgen.cpp63 行定义.

64 {
65  m_t << c;
66  //if (m_t != 0)
67  // (*m_t) << c;
68  //else
69  // m_s += c;
70 }

引用了 m_t.

被这些函数引用 PerlModOutput::add(), PerlModOutput::continueBlock(), PerlModOutput::iaddField(), PerlModOutput::iaddFieldQuotedChar(), PerlModOutput::iaddFieldQuotedString(), PerlModOutput::iaddQuoted(), PerlModOutput::iclose(), PerlModOutput::indent() , 以及 PerlModOutput::iopen().

◆ add() [2/4]

void PerlModOutputStream::add ( const QCString s)

在文件 perlmodgen.cpp72 行定义.

73 {
74  m_t << s;
75  //if (m_t != 0)
76  // (*m_t) << s;
77  //else
78  // m_s += s;
79 }

引用了 m_t.

◆ add() [3/4]

void PerlModOutputStream::add ( int  n)

在文件 perlmodgen.cpp81 行定义.

82 {
83  m_t << n;
84  //if (m_t != 0)
85  // (*m_t) << n;
86  //else
87  // m_s += QCString().setNum(n);
88 }

引用了 m_t.

◆ add() [4/4]

void PerlModOutputStream::add ( unsigned int  n)

在文件 perlmodgen.cpp90 行定义.

91 {
92  m_t << n;
93  //if (m_t != 0)
94  // (*m_t) << n;
95  //else
96  // m_s += QCString().setNum(n);
97 }

引用了 m_t.

类成员变量说明

◆ m_t

std::ostream& PerlModOutputStream::m_t

在文件 perlmodgen.cpp53 行定义.

被这些函数引用 add().


该类的文档由以下文件生成:
PerlModOutputStream::m_t
std::ostream & m_t
Definition: perlmodgen.cpp:53