Go to the documentation of this file.
22 #ifndef _BLAZE_UTIL_LOGGING_FUNCTIONTRACE_H_
23 #define _BLAZE_UTIL_LOGGING_FUNCTIONTRACE_H_
61 FunctionTrace(
const std::string& file,
const std::string&
function );
84 void*
operator new ( std::size_t ) ;
85 void*
operator new[]( std::size_t ) ;
86 void*
operator new ( std::size_t,
const std::nothrow_t& ) ;
87 void*
operator new[]( std::size_t,
const std::nothrow_t& ) ;
89 void operator delete (
void* ) ;
90 void operator delete[](
void* ) ;
91 void operator delete (
void*,
const std::nothrow_t& ) ;
92 void operator delete[](
void*,
const std::nothrow_t& ) ;
140 #if BLAZE_USE_FUNCTION_TRACES
141 # define BLAZE_FUNCTION_TRACE \
142 blaze::logging::FunctionTrace BLAZE_FUNCTION_TRACE_OBJECT( __FILE__, BLAZE_SIGNATURE )
144 # define BLAZE_FUNCTION_TRACE