mirror of
https://github.com/zxing/zxing.git
synced 2025-02-02 05:41:08 -08:00
git-svn-id: https://zxing.googlecode.com/svn/trunk@495 59b500cc-1b3d-0410-9834-0bbf25fbcc57
30 lines
616 B
Objective-C
30 lines
616 B
Objective-C
//
|
|
// ScanCell.h
|
|
// ZXing
|
|
//
|
|
// Created by Christian Brunschen on 30/06/2008.
|
|
// Copyright 2008 Google Inc. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class Scan;
|
|
@class ParsedResult;
|
|
|
|
@interface ScanCell : UITableViewCell {
|
|
Scan *scan;
|
|
ParsedResult *result;
|
|
UIImageView *imageView;
|
|
UILabel *textView;
|
|
UILabel *dateView;
|
|
UILabel *timeView;
|
|
}
|
|
|
|
@property (nonatomic, retain) Scan *scan;
|
|
@property (nonatomic, retain) UIImageView *imageView;
|
|
@property (nonatomic, retain) UILabel *textView;
|
|
@property (nonatomic, retain) UILabel *dateView;
|
|
@property (nonatomic, retain) UILabel *timeView;
|
|
|
|
@end
|