All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
ProgressSection.h
Go to the documentation of this file.
1 //=================================================================================================
20 //=================================================================================================
21 
22 #ifndef _BLAZE_UTIL_LOGGING_PROGRESSSECTION_H_
23 #define _BLAZE_UTIL_LOGGING_PROGRESSSECTION_H_
24 
25 
26 //*************************************************************************************************
27 // Includes
28 //*************************************************************************************************
29 
31 
32 
33 namespace blaze {
34 
35 namespace logging {
36 
37 //=================================================================================================
38 //
39 // BLAZE_LOG_PROGRESS_SECTION MACRO
40 //
41 //=================================================================================================
42 
43 //*************************************************************************************************
83 #define BLAZE_LOG_PROGRESS_SECTION( NAME ) \
84  if( blaze::logging::loglevel >= blaze::logging::progress ) \
85  if( blaze::logging::LogSection NAME = blaze::logging::progress )
86 //*************************************************************************************************
87 
88 } // namespace logging
89 
90 } // namespace blaze
91 
92 #endif