1111#endif
1212#include " DynamsoftCore.h"
1313
14- #define DCP_VERSION " 2.0.0.629 "
14+ #define DCP_VERSION " 2.0.10.807 "
1515/* *
1616 * @enum MappingStatus
1717 *
@@ -124,41 +124,41 @@ namespace dynamsoft
124124 virtual ~CParsedResult () {};
125125
126126 /* *
127- * Gets the hash ID of the source image.
127+ * Gets the hash ID of the original image.
128128 *
129- * @return Returns a pointer to a null-terminated string containing the hash ID of the source image.
129+ * @return Returns a pointer to a null-terminated string containing the hash ID of the original image.
130130 *
131131 */
132- virtual const char * GetSourceImageHashId ()const = 0;
132+ virtual const char * GetOriginalImageHashId ()const = 0;
133133
134134 /* *
135- * Gets the tag of the source image.
135+ * Gets the tag of the original image.
136136 *
137- * @return Returns a pointer to a CImageTag object representing the tag of the source image.
137+ * @return Returns a pointer to a CImageTag object representing the tag of the original image.
138138 *
139139 */
140- virtual const CImageTag* GetSourceImageTag ()const = 0;
140+ virtual const CImageTag* GetOriginalImageTag ()const = 0;
141141
142142 /* *
143- * Gets the number of decoded barcode items in the barcode reading result.
143+ * Gets the number of parsed result items in the parsed result.
144144 *
145- * @return Returns the number of decoded barcode items in the barcode reading result.
145+ * @return Returns the number of parsed result items in the parsed result.
146146 *
147147 */
148- virtual int GetCount ()const = 0;
149-
148+ virtual int GetItemsCount ()const = 0;
149+
150150 /* *
151- * Gets the decoded barcode result item at the specified index.
151+ * Gets the parsed result item at the specified index.
152152 *
153- * @param [in] index The zero-based index of the barcode result item to retrieve.
153+ * @param [in] index The zero-based index of the parsed result item to retrieve.
154154 *
155- * @return Returns a pointer to the CDecodedBarcodesResult object at the specified index.
155+ * @return Returns a pointer to the CParsedResultItem object at the specified index.
156156 *
157157 */
158158 virtual const CParsedResultItem* GetItem (int index)const = 0;
159159
160160 /* *
161- * Remove a specific item from the array in the normalized images .
161+ * Remove a specific item from the array in the parsed results .
162162 *
163163 * @param [in] item The specific item to remove.
164164 *
@@ -178,9 +178,9 @@ namespace dynamsoft
178178 virtual bool HasItem (const CParsedResultItem* item) const = 0;
179179
180180 /* *
181- * Gets the error code of the barcode reading result, if an error occurred.
181+ * Gets the error code of the parsed result, if an error occurred.
182182 *
183- * @return Returns the error code of the barcode reading result, or 0 if no error occurred.
183+ * @return Returns the error code of the parsed result, or 0 if no error occurred.
184184 *
185185 */
186186 virtual int GetErrorCode ()const = 0;
0 commit comments