You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Copyright (c) 2014 jhurray. All rights reserved.
//
#ifndef JHPullToRefreshExampleProj_Header_h
#define JHPullToRefreshExampleProj_Header_h
// For abstract classes
#define MustOverride() @throw [NSException exceptionWithName:NSInvalidArgumentException reason:[NSString stringWithFormat:@"%s must be overridden in a subclass/category", __PRETTY_FUNCTION__] userInfo:nil]
// DEBUG
#define JHPTR_DEBUG_FLAG NO
#define JHPTR_DEBUG(s) if (JHPTR_DEBUG_FLAG) {NSLog(@"JHPTR_DEBUG: %@", s);}