CARMA C++
Trace.h
1 /*
2  * Simple Tracing for the CARMA Alarm Subsystem
3  *
4  * Copyright (c) 2010 Ira W. Snyder <iws@ovro.caltech.edu>
5  */
6 
7 #ifndef CARMA_ALARM_TRACE_H
8 #define CARMA_ALARM_TRACE_H
9 
10 #include <carma/util/Trace.h>
11 
12 #define CPTRACE0(s) CARMA_CPTRACE(carma::util::Trace::TRACE0, s)
13 #define CPTRACE1(s) CARMA_CPTRACE(carma::util::Trace::TRACE1, s)
14 #define CPTRACE2(s) CARMA_CPTRACE(carma::util::Trace::TRACE2, s)
15 #define CPTRACE3(s) CARMA_CPTRACE(carma::util::Trace::TRACE3, s)
16 #define CPTRACE4(s) CARMA_CPTRACE(carma::util::Trace::TRACE4, s)
17 #define CPTRACE5(s) CARMA_CPTRACE(carma::util::Trace::TRACE5, s)
18 #define CPTRACE6(s) CARMA_CPTRACE(carma::util::Trace::TRACE6, s)
19 #define CPTRACE7(s) CARMA_CPTRACE(carma::util::Trace::TRACE7, s)
20 
21 #endif /* CARMA_ALARM_TRACE_H */
22 
23 /* vim: set ts=8 sts=8 sw=8 noet tw=92: */
Interface file for the carma::util::Trace class and related macros.