iphone-common-codes-ccteam源代码 CCCompile.h
//
// CCCompile.h
// CCFC
//
// Created by xichen on 11-12-17.
// Copyright 2011年 ccteam. All rights reserved.
//
#import <Foundation/Foundation.h>
// 是否进行编译并执行指定函数(默认函数为无参函数)
#define COMPILE(compiledOrNot, funcPtr) \
if(compiledOrNot) \
{ \
funcPtr(); \
}
@interface CCCompile : NSObject
{
}
@end
googlecode链接地址(会有更新):http://code.google.com/p/iphone-common-codes-ccteam/source/browse/trunk/CCFC/files/CCCompile.h