scan archive UI improvements, phase 3
[zxing.git] / iphone / Classes / ArchiveController.h
index 90c42bf..ed88d6b 100644 (file)
@@ -4,7 +4,7 @@
 //
 //  Created by Christian Brunschen on 29/05/2008.
 /*
- * Copyright 2008 Google Inc.
+ * Copyright 2008 ZXing authors
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
 
 @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;