mirror of
https://github.com/zxing/zxing.git
synced 2024-11-11 13:34:08 -08:00
19 lines
293 B
C
19 lines
293 B
C
|
//
|
||
|
// ResultParser.h
|
||
|
// ZXing
|
||
|
//
|
||
|
// Created by Christian Brunschen on 25/06/2008.
|
||
|
// Copyright 2008 Google Inc. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
#import "ParsedResult.h"
|
||
|
|
||
|
@interface ResultParser : NSObject {
|
||
|
|
||
|
}
|
||
|
|
||
|
+ (ParsedResult *)parsedResultForString:(NSString *)s;
|
||
|
|
||
|
@end
|