summaryrefslogtreecommitdiff
path: root/SmartDeviceLink-iOS/SmartDeviceLink/SDLObjectWithPriority.h
blob: 334139d5f4988c2a5d7323cd02f880632b129c77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
//  SDLObjectWithPriority.h
//  SmartDeviceLink
//

#import <Foundation/Foundation.h>


@interface SDLObjectWithPriority : NSObject

@property (strong) id object;
@property (assign) NSInteger priority;

- (instancetype)initWithObject:(id)object priority:(NSInteger)priority NS_DESIGNATED_INITIALIZER;

+ (instancetype)objectWithObject:(id)object priority:(NSInteger)priority;

@end