lean cpp library
A lean C++ library providing efficient utility classes for high-performance C++ applications.
|
00001 /*****************************************************/ 00002 /* lean Logging (c) Tobias Zirr 2011 */ 00003 /*****************************************************/ 00004 00005 #ifndef LEAN_LOGGING 00006 #define LEAN_LOGGING 00007 00008 namespace lean 00009 { 00015 namespace logging { } 00016 } 00017 00018 #include "streamconv.h" 00019 00020 #include "log_target.h" 00021 #include "log_file.h" 00022 #include "log_debugger.h" 00023 #include "log_stream.h" 00024 00025 #include "log.h" 00026 00027 #include "errors.h" 00028 00029 #endif