Advertisement
Guest User

Untitled

a guest
Aug 9th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //
  2. //  Favorite.h
  3. //  MacFXP
  4. //
  5. //  Created by Rasmus Hummelmose on 4/8/11.
  6. //  Copyright 2011 Århus Universitet. All rights reserved.
  7. //
  8.  
  9. #import <Foundation/Foundation.h>
  10.  
  11.  
  12. @interface Favorite : NSObject {
  13. @private
  14.     NSDictionary * favorite;
  15. }
  16.  
  17. - (id)initWithName:(NSString*)name
  18.                 IP:(NSString*)ip
  19.               port:(NSString*)port
  20.               user:(NSString*)user
  21.               pass:(NSString*)pass;
  22.  
  23. -(NSDictionary*) favorite;
  24.  
  25. -(NSString*) name;
  26. -(NSString*) ip;
  27. -(NSString*) port;
  28. -(NSString*) user;
  29. -(NSString*) pass;
  30.  
  31. @end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement