GRDestination.h 456 B

123456789101112131415161718192021
  1. //
  2. // GAPluginsDestination.h
  3. // GremlinApp
  4. //
  5. // Created by Youssef Francis on 10/9/12.
  6. // Copyright (c) 2012 CocoaNuts. All rights reserved.
  7. //
  8. //#import <Foundation/Foundation.h>
  9. @interface GRDestination : NSObject
  10. @property (retain) NSBundle* bundle;
  11. @property (retain) NSString* rank;
  12. @property (retain) NSArray* resources;
  13. @property (retain) NSString* name;
  14. + (GRDestination*)destinationForBundle:(NSBundle*)bundle rank:(NSString*)rank;
  15. @end