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

#import <UIKit/UIKit.h>


@interface FavoritesViewController : UITableViewController {
	NSMutableArray *listeFavoris;
	UITableView *table;
}
@property (nonatomic, retain) NSMutableArray *listeFavoris;
@property (nonatomic, retain) IBOutlet UITableView *table;
-(IBAction)toggleEdit:(id)sender;
@end
