| layout | default-layout |
|---|---|
| title | CBarcodeReaderModule Class - Dynamsoft Barcode Reader C++ Edition API Reference |
| description | API reference for the CBarcodeReaderModule class in Dynamsoft Barcode Reader C++ Edition, providing module-level utilities such as version retrieval and factory methods for barcode elements. |
| keywords | barcode reader module, c++ |
| needAutoGenerateSidebar | true |
| needGenerateH3Content | true |
The CBarcodeReaderModule class defines general functions in the barcode reader module.
Namespace: dynamsoft::dbr
Assembly: DynamsoftBarcodeReader
class CBarcodeReaderModule | Method | Description |
|---|---|
| GetVersion | Returns the version of the barcode reader module. |
| CreateDecodedBarcodeElement | Create a CDecodedBarcodeElement object. |
| CreateLocalizedBarcodeElement | Create a CLocalizedBarcodeElement object. |
Returns the version of the barcode reader module.
static const char* GetVersion();Parameters
None.
Return Value
Returns a const char pointer representing the version of the barcode reader module.
Create a CDecodedBarcodeElement object.
static intermediate_results::CDecodedBarcodeElement* CreateDecodedBarcodeElement();Return Value
Returns an object of CDecodedBarcodeElement.
See Also
[CDecodedBarcodeElement]({{ site.dbr_cpp_api }}decoded-barcode-element.html)
Create a CLocalizedBarcodeElement object.
static intermediate_results::CLocalizedBarcodeElement* CreateLocalizedBarcodeElement();Return Value
Returns an object of CLocalizedBarcodeElement.
See Also
[CLocalizedBarcodeElement]({{ site.dbr_cpp_api }}localized-barcode-element.html)