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

#import "CustomCell.h"


@implementation CustomCell
@synthesize photo;
@synthesize typeImmeuble;
@synthesize adresse;
@synthesize distance;
@synthesize prix;

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
    
    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
    if (self) {
        // Initialization code.
    }
    return self;
}


- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
    
    [super setSelected:selected animated:animated];
    
    // Configure the view for the selected state.
}


- (void)dealloc {
	photo.release;
	typeImmeuble.release;
	adresse.release;
	distance.release;
	prix.release;
    [super dealloc];
}


@end
