zxing/iphone/Classes/ResultParser.h

19 lines
293 B
C
Raw Normal View History

//
// 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