You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
386 B
Objective-C
19 lines
386 B
Objective-C
//
|
|
// PEPCSVScanner.h
|
|
// pEpiOSAdapter
|
|
//
|
|
// Created by Dirk Zimmermann on 03.05.17.
|
|
// Copyright © 2017 p≡p. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface PEPCSVScanner : NSObject
|
|
|
|
@property (nonatomic, readonly, nonnull) NSString *string;
|
|
|
|
- (instancetype _Nonnull )initWithString:(NSString * _Nonnull)string;
|
|
- (NSString * _Nullable)nextString;
|
|
|
|
@end
|