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

posted @ 2011-12-30 11:06  cc_team  阅读(145)  评论(0编辑  收藏  举报