lpw
2021-01-26 49b8839fda3439edc31581527e84036e58f55f0f
frameworks/FBSDKCoreKit.framework/Headers/FBSDKMutableCopying.h
@@ -16,20 +16,32 @@
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#import "TargetConditionals.h"
#if !TARGET_OS_TV
#import <Foundation/Foundation.h>
#import <FBSDKCoreKit/FBSDKCopying.h>
#import "FBSDKCopying.h"
/*!
 @abstract Extension protocol for NSMutableCopying that adds the mutableCopy method, which is implemented on NSObject.
 @discussion NSObject<NSCopying, NSMutableCopying> implicitly conforms to this protocol.
NS_ASSUME_NONNULL_BEGIN
/**
  Extension protocol for NSMutableCopying that adds the mutableCopy method, which is implemented on NSObject.
 NSObject<NSCopying, NSMutableCopying> implicitly conforms to this protocol.
 */
NS_SWIFT_NAME(MutableCopying)
@protocol FBSDKMutableCopying <FBSDKCopying, NSMutableCopying>
/*!
 @abstract Implemented by NSObject as a convenience to mutableCopyWithZone:.
/**
  Implemented by NSObject as a convenience to mutableCopyWithZone:.
 @return A mutable copy of the receiver.
 */
- (id)mutableCopy;
@end
NS_ASSUME_NONNULL_END
#endif