blob: 795b186df7b9093d46b491ffe14a718316b65f6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//
// NSMutableArray+NSMutableArray_Safe.h
// SmartDeviceLink
//
// Created by Joel Fischer on 9/12/18.
// Copyright © 2018 smartdevicelink. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface NSMutableArray<ObjectType> (Safe)
- (void)sdl_safeAddObject:(ObjectType)object;
@end
|