exposed private API for better testing on MPPickcharsParser.

Parser now support default conversion to down arrow presses.
Special format handling currently not supported
This commit is contained in:
Michael Starke
2017-12-07 17:45:00 +01:00
parent 91508f0dde
commit 4099c52266
4 changed files with 130 additions and 20 deletions

View File

@@ -0,0 +1,19 @@
//
// MPPickcharsParser_Private.h
// MacPass
//
// Created by Michael Starke on 07.12.17.
// Copyright © 2017 HicknHack Software GmbH. All rights reserved.
//
#import "MPPickcharsParser.h"
@interface MPPickcharsParser ()
@property NSUInteger pickCount; // count to pick
@property NSUInteger checkboxOffset;
@property BOOL convertToDownArrows;
@property BOOL hideCharacters;
@property (copy) NSString *checkboxFormat;
@end