Foxit PDF SDK
|
Public Member Functions | |
ResultInformation () | |
Constructor. | |
ResultInformation (const ResultInformation &other) | |
Constructor, with another result information object. More... | |
~ResultInformation () | |
Destructor. | |
FixupData | GetFixupData (int index) const |
Get a fixup data. More... | |
int | GetFixupDataCount () const |
Get count of fixup data. More... | |
HitData | GetHitData (int index) const |
Get a hit data. More... | |
int | GetHitDataCount () const |
Get count of hit data. More... | |
bool | IsEmpty () const |
Check whether current object is empty or not. More... | |
bool | operator!= (const ResultInformation &other) const |
Not equal operator. More... | |
ResultInformation & | operator= (const ResultInformation &other) |
Assign operator. More... | |
bool | operator== (const ResultInformation &other) const |
Equal operator. More... | |
![]() | |
FS_HANDLE | Handle () const |
Get the handle of current object. More... | |
This class represents the set of result information for verifying or converting process. Fixup data or hit data can be retrieved from the result information.
foxit::addon::compliance::ResultInformation::ResultInformation | ( | const ResultInformation & | other | ) |
Constructor, with another result information object.
[in] | other | Another ResultInformation object. |
FixupData foxit::addon::compliance::ResultInformation::GetFixupData | ( | int | index | ) | const |
Get a fixup data.
[in] | index | Index of fixup data to be retrieved. Valid range: from 0 to (count-1). count is returned by function ResultInformation::GetFixupDataCount. |
int foxit::addon::compliance::ResultInformation::GetFixupDataCount | ( | ) | const |
Get count of fixup data.
HitData foxit::addon::compliance::ResultInformation::GetHitData | ( | int | index | ) | const |
Get a hit data.
[in] | index | Index of hit data to be retrieved. Valid range: from 0 to (count-1). count is returned by function ResultInformation::GetHitDataCount. |
int foxit::addon::compliance::ResultInformation::GetHitDataCount | ( | ) | const |
Get count of hit data.
bool foxit::addon::compliance::ResultInformation::IsEmpty | ( | ) | const |
Check whether current object is empty or not.
When the current object is empty, that means current object is useless.
bool foxit::addon::compliance::ResultInformation::operator!= | ( | const ResultInformation & | other | ) | const |
Not equal operator.
[in] | other | Another result information object. This function will check if current object is not equal to this one. |
ResultInformation& foxit::addon::compliance::ResultInformation::operator= | ( | const ResultInformation & | other | ) |
Assign operator.
[in] | other | Another result information object, whose value would be assigned to current object. |
bool foxit::addon::compliance::ResultInformation::operator== | ( | const ResultInformation & | other | ) | const |
Equal operator.
[in] | other | Another result information object. This function will check if current object is equal to this one. |