[
next
] [
prev
] [
prev-tail
] [
tail
] [
up
]
1.4.2.2
Trace
you can implement trace, such as it in the MFC
#
if
defined
NDEBUG
#
define
TRACE
(
format
,
...
)
#
else
#
define
TRACE
(
format
,
...
)
printf
(
"
%
s
::%
s
(%
d
)
"
format
,
__FILE__
,
__FUNCTION__
,
__LINE__
,
__VA_ARGS__
)
#
endif
[
next
] [
prev
] [
prev-tail
] [
front
] [
up
]