//
//  CustomCell.h
//  Agence
//
//  Created by Olivier Savard on 11-01-19.
//  Copyright 2011 OSInfo Informatique. All rights reserved.
//

#import <UIKit/UIKit.h>


@interface CustomCell : UITableViewCell {
	UIImageView	*photo;
	UILabel *typeImmeuble;
	UILabel *adresse;
	UILabel *distance;
	UILabel *prix;
}
@property (nonatomic,retain) IBOutlet UIImageView *photo;
@property (nonatomic,retain) IBOutlet UILabel *typeImmeuble;
@property (nonatomic,retain) IBOutlet UILabel *adresse;
@property (nonatomic,retain) IBOutlet UILabel *distance;
@property (nonatomic,retain) IBOutlet UILabel *prix;
@end
