mirror of
https://github.com/zxing/zxing.git
synced 2024-11-11 13:34:08 -08:00
29dce2a397
git-svn-id: https://zxing.googlecode.com/svn/trunk@1665 59b500cc-1b3d-0410-9834-0bbf25fbcc57
21 lines
455 B
Objective-C
21 lines
455 B
Objective-C
//
|
|
// UniversalResultParser.h
|
|
// ZXingWidget
|
|
//
|
|
// Created by Romain Pechayre on 11/14/10.
|
|
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "ResultParser.h"
|
|
|
|
@interface UniversalResultParser : ResultParser {
|
|
//NSMutableArray *parsers;
|
|
}
|
|
|
|
//@property(nonatomic,retain) NSMutableArray *parsers;
|
|
|
|
+ (void)initWithDefaultParsers;
|
|
+ (ParsedResult *)parsedResultForString:(NSString *)theString;
|
|
@end
|