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


#import "SDLRPCResponse.h"

/**
 * Generic Response is sent, when the name of a received msg cannot be
 * retrieved. Only used in case of an error. Currently, only resultCode
 * INVALID_DATA is used.
 */
@interface SDLGenericResponse : SDLRPCResponse {
}

- (instancetype)init;
- (instancetype)initWithDictionary:(NSMutableDictionary *)dict;

@end