18 lines
343 B
C
18 lines
343 B
C
//
|
|
// EXPDefines.h
|
|
// Expecta
|
|
//
|
|
// Created by Luke Redpath on 26/03/2012.
|
|
// Copyright (c) 2012 Peter Jihoon Kim. All rights reserved.
|
|
//
|
|
|
|
#ifndef Expecta_EXPDefines_h
|
|
#define Expecta_EXPDefines_h
|
|
|
|
typedef void (^EXPBasicBlock)();
|
|
typedef id (^EXPIdBlock)();
|
|
typedef BOOL (^EXPBoolBlock)();
|
|
typedef NSString *(^EXPStringBlock)();
|
|
|
|
#endif
|