scan archive UI improvements, phase 3
[zxing.git] / iphone / Classes / ArchiveController.h
index 18ad6b6..ed88d6b 100644 (file)
 
 @interface ArchiveController : UITableViewController {
   NSMutableArray *scans;
+  NSMutableArray *results;
   DecoderViewController *decoderViewController;
+  NSDateFormatter *dateFormatter;
 }
 
 @property (nonatomic, retain) NSMutableArray *scans;
+@property (nonatomic, retain) NSMutableArray *results;
 @property (nonatomic, retain) DecoderViewController *decoderViewController;
+@property (nonatomic, retain) NSDateFormatter *dateFormatter;
 
 - (NSInteger)scanIndexForRow:(NSInteger)row;
 - initWithDecoderViewController:(DecoderViewController *)dc;