Lines Matching refs:PDFValue
84 struct PDFValue : public PDFEntry struct
87 PDFValue() : PDFEntry() {} in PDFValue() argument
88 virtual ~PDFValue();
91 struct PDFName : public PDFValue
96 : PDFValue(), m_aName( rName ) {} in PDFName()
104 struct PDFString : public PDFValue
109 : PDFValue(), m_aString( rString ) {} in PDFString()
117 struct PDFNumber : public PDFValue
122 : PDFValue(), m_fValue( fVal ) {} in PDFNumber()
128 struct PDFBool : public PDFValue
133 : PDFValue(), m_bValue( bVal ) {} in PDFBool()
139 struct PDFObjectRef : public PDFValue
145 : PDFValue(), m_nNumber( nNr ), m_nGeneration( nGen ) {} in PDFObjectRef()
151 struct PDFNull : public PDFValue