|
Foxit PDF SDK
|
Inherits Object.
Public Types | |
| enum | FixupState { e_FixupStateSuccess = 0, e_FixupStateFailure = 1, e_FixupStateNotRequired = 2 } |
| Enumeration for the state of a fixup data. More... | |
Public Member Functions | |
| FixupData () | |
| Constructor. | |
| FixupData (const FixupData &other) | |
| Constructor, with another fixup data object. More... | |
| bool | operator != (const FixupData &other) const |
| Not equal operator. More... | |
| FixupData & | operator= (const FixupData &other) |
| Assign operator. More... | |
| bool | operator== (const FixupData &other) const |
| Equal operator. More... | |
Public Attributes | |
| WString | comment |
| Fixup rule comment to explain more details about the rule. | |
| WString | name |
| Fixup rule name. | |
| WStringArray | reasons |
| Fixup reasons. This may be an empty array. The count of reasons will not exceed used_times. | |
| FixupState | state |
| Fixup state. Please refer to values starting from FixupData::e_FixupStateSuccess and this should be one of these values. | |
| uint32 | used_count |
| Represents the count of fixup operation invocations for current data during the conversion. | |
This class represents a fixup data. Fixup data represents the data for a kind of fixup operation triggered during converting process.
|
inline |
Constructor, with another fixup data object.
| [in] | other | Another fixup data object. |
|
inline |
Not equal operator.
| [in] | other | Another fixup data object. This function will check if current object is not equal to this one. |
Assign operator.
| [in] | other | Another fixup data object, whose value would be assigned to current object. |
|
inline |
Equal operator.
| [in] | other | Another fixup data object. This function will check if current object is equal to this one. |