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

#import <UIKit/UIKit.h>


@interface PickerViewController : UIViewController {
	UIPickerView *picker;
	NSArray *pickerData;
}
@property (nonatomic,retain) IBOutlet UIPickerView *picker;
@property (nonatomic,retain) NSArray *pickerData;
-(IBAction)buttonPressed:(id)sender;
@end
