Configuration class for Code 93 barcodes. More...
#include <cvb/config.hpp>
Inherits ConfigBase< Code93 >.
Public Member Functions | |
Code93 & | SetMinDataLength (int length) |
Sets the minimum data length. | |
int | MinDataLength () const |
Gets the minimum data length. | |
Code93 & | SetMaxDataLength (int length) |
Sets the maximum data length. | |
int | MaxDataLength () const |
Gets the maximum data length. | |
![]() | |
bool | Enabled () const |
Checks if decoding for the code type represented by the derived class is enabled. | |
Code93 & | Enable () |
Enables decoding for the code type represented by the derived class. | |
Code93 & | Disable () |
Disables decoding for the code type represented by the derived class. | |
Friends | |
class | Cvb::CodeReader::Decoder |
Configuration class for Code 93 barcodes.
Use this class to configure decoding options for Code 93 barcodes. To access the configuration and enable decoding Code 93 barcodes, use the following example. For additional details on configuration, refer to the documentation for Decoder::Config().
|
inline |
Gets the maximum data length.
See function Code93::SetMaxDataLength() for details.
|
inline |
Gets the minimum data length.
|
inline |
Sets the maximum data length.
The default value is 0 for no checking.
length | Number of characters of the longest decoded string, up to 120. |