mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-29 09:01:05 +00:00
20 lines
442 B
Objective-C
20 lines
442 B
Objective-C
//
|
|
// OCHamcrest - HCRequireNonNilObject.h
|
|
// Copyright 2013 hamcrest.org. See LICENSE.txt
|
|
//
|
|
// Created by: Jon Reid, http://qualitycoding.org/
|
|
// Docs: http://hamcrest.github.com/OCHamcrest/
|
|
// Source: https://github.com/hamcrest/OCHamcrest
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <objc/objc-api.h>
|
|
|
|
|
|
/**
|
|
Throws an NSException if @a obj is @c nil.
|
|
|
|
@ingroup helpers
|
|
*/
|
|
OBJC_EXPORT void HCRequireNonNilObject(id obj);
|