CARMA C++
programExtras.h
Go to the documentation of this file.
1 #ifndef CARMA_UTIL_PROGRAM_EXTRAS_H
2 #define CARMA_UTIL_PROGRAM_EXTRAS_H
3 
8 
9 
10 namespace log4cpp {
11 
12 class Category;
13 
14 } // namespace log4cpp
15 
16 
17 namespace carma {
18 namespace util {
19 
20 class Trace;
21 
22 
23 log4cpp::Category & getProgramLogger( );
24 
25 log4cpp::Category * getProgramLoggerIfAvailable( );
26 
27 Trace & getProgramTraceObject( );
28 
29 Trace * getProgramTraceObjectIfAvailable( );
30 
31 
32 } // namespace carma::util
33 } // namespace carma
34 
35 #endif