Refactored ParsedResult classes into ResultParsers & ParsedResults, to allow multiple...
[zxing.git] / iphone / Classes / SMSParsedResult.h
1 //
2 //  SMSParsedResult.h
3 //  ZXing
4 //
5 //  Created by Christian Brunschen on 25/06/2008.
6 //  Copyright 2008 Google Inc. All rights reserved.
7 //
8
9 #import <UIKit/UIKit.h>
10 #import "ParsedResult.h"
11
12
13 @interface SMSParsedResult : ParsedResult {
14   NSString *number;
15   NSString *body;
16 }
17
18 @property (nonatomic, copy) NSString *number;
19 @property (nonatomic, copy) NSString *body;
20
21 - initWithNumber:(NSString *)n body:(NSString *)b;
22
23 @end