77#define ZFLog(...) _ZFP_ZFLog((ZFLogHeader ? ZFLogHeader(ZFCallerInfoCreate()).cString() : zfnull), zfstr(__VA_ARGS__))
80#define ZFLogTrim(...) _ZFP_ZFLog(zfnull, zfstr(__VA_ARGS__))
124#define ZFLogCurTimeString() _ZFP_ZFLogCurTimeString()
#define ZFLIB_ZFCore
used to export symbols
Definition ZFCoreEnvDef.h:30
_ZFT_t_zfchar zfchar
char wrapper
Definition ZFCoreTypeDef_CharType.h:17
#define zfextend
dummy macro shows class inherit from another
Definition ZFCoreTypeDef_ClassType.h:53
#define zfoverride
dummy macro shows that method override parent's method
Definition ZFCoreTypeDef_ClassType.h:58
#define ZF_IN
dummy macro that shows the param used as required input
Definition ZFCoreTypeDef_ClassType.h:180
#define ZF_IN_OPT
dummy macro that shows the param used as optional input
Definition ZFCoreTypeDef_ClassType.h:184
#define ZF_IN_OUT
dummy macro that shows the param used as required input and output
Definition ZFCoreTypeDef_ClassType.h:196
_ZFT_t_zfbool zfbool
bool type
Definition ZFCoreTypeDef_CoreType.h:103
_ZFT_t_zfindex zfindex
similar to size_t, used for index and size only
Definition ZFCoreTypeDef_CoreType.h:154
#define zftrue
bool true type
Definition ZFCoreTypeDef_CoreType.h:107
#define zfnull
same as NULL, defined for future use
Definition ZFCoreTypeDef_CoreType.h:88
zft_zfstring< zfchar > zfstring
see zft_zfstring
Definition ZFCoreTypeDef_StringType.h:15
#define ZFEXPORT_VAR_DECLARE(ZFLIB_, Type, Name)
util to export global variable
Definition ZFExport.h:68
zfbool & ZFLogHeaderDefault_logTime(void)
see ZFLogHeader, enabled by default
Definition ZFLog.h:41
void ZFLogFormatDefault(ZFLogFormat *fmt)
change default log format
zfstring ZFLogHeaderDefault(const ZFCallerInfo &callerInfo)
see ZFLogHeader
zfstring(* ZFLogHeaderFunc)(const ZFCallerInfo &callerInfo)
see ZFLogHeader
Definition ZFLog.h:24
zfbool & ZFLogHeaderDefault_logCaller(void)
see ZFLogHeader, enabled by default, set to false if v_ZFLogLevel::e_Verbose is not active
Definition ZFLog.h:43
ZFMutex * ZFLogMutex()
mutex used by ZFLog, you may use this lock to prevent your log actions from being interrupted
ZFLogHeaderFunc ZFLogHeader
callback to obtain log header for ZFLog
zfstring ZFLogCurTimeString()
get a string contains current time with format HH:mm:ss.SSS
#define ZFMP_IN(ParamType, paramName)
macro to wrap param types for ZFMETHOD_INLINE_0 series
Definition ZFMethod.h:105
#define ZFMETHOD_FUNC_DECLARE_0(ZFLIB_, ReturnType, MethodName)
declare function type of ZFMethod
Definition ZFMethodFuncDeclare.h:493
#define ZFMETHOD_FUNC_DECLARE_1(ZFLIB_, ReturnType, MethodName, ZFMP_0)
see ZFMETHOD_FUNC_DECLARE_0
Definition ZFMethodFuncDeclare.h:624
#define ZF_NAMESPACE_GLOBAL_BEGIN
begin namespace ZFFramework
Definition ZFNamespace.h:97
#define ZF_NAMESPACE_GLOBAL_END
end namespace ZFFramework
Definition ZFNamespace.h:98
#define zfclass
same as class, shows that this class is a ZFObject type
Definition ZFObjectClassTypeFwd.h:38
#define ZFOBJECT_DECLARE(ChildClass, SuperClass,...)
necessary for every class inherit from ZFObject
Definition ZFObjectDeclare.h:126
#define ZFIMPLEMENT_DECLARE(ImplementedInterfaces,...)
see ZFINTERFACE_DECLARE
Definition ZFObjectInterface.h:169
#define zfimplement
shows class implement from interface, see ZFInterface
Definition ZFObjectInterface.h:24
#define ZFPROPERTY_ASSIGN(Type, Name,...)
see ZFPROPERTY_RETAIN
Definition ZFPropertyDeclare.h:128
util class to hold caller info
Definition ZFCallerInfo.h:63
mutex utility
Definition ZFMutex.h:15
general output callback
Definition ZFIOCallback_output.h:37