20 lines
384 B
C
20 lines
384 B
C
//
|
|
// CardIODetectionMode.h
|
|
// Version 5.4.1-12-g4433c8e
|
|
//
|
|
// See the file "LICENSE.md" for the full license governing this code.
|
|
//
|
|
//
|
|
|
|
#ifndef icc_CardIODetectionMode_h
|
|
#define icc_CardIODetectionMode_h
|
|
|
|
typedef NS_ENUM(NSInteger, CardIODetectionMode) {
|
|
CardIODetectionModeCardImageAndNumber = 0,
|
|
CardIODetectionModeCardImageOnly,
|
|
CardIODetectionModeAutomatic
|
|
};
|
|
|
|
#endif
|
|
|