#import <UIKit/UIKit.h>

#import "PrefTable.h"

@interface PrefView : UIView
{
  UIView* _parent;
  NSString* _collection;

  UINavigationBar* _navbar;
  PrefTable* _prefTable;

}

-(id) initWithFrame:(struct CGRect)frame withParent:(UIView*)parent 
         withCollection:(NSString*)collection withTitle:(NSString*)title;

-(void) setTitle:(NSString*)title;

-(NSString*) languagePref;

-(void) dealloc;

@end
