SpectMorph
smdebug.hh
1 // Licensed GNU LGPL v3 or later: http://www.gnu.org/licenses/lgpl.html
2 
3 #ifndef SPECTMORPH_DEBUG_HH
4 #define SPECTMORPH_DEBUG_HH
5 
6 #include <string>
7 #include <glib.h>
8 
9 namespace SpectMorph
10 {
11 
12 namespace Debug
13 {
14 
15 void debug (const char *area, const char *fmt, ...) G_GNUC_PRINTF (2, 3);
16 void debug_enable (const std::string& area);
17 
18 }
19 
20 }
21 
22 #endif
STL namespace.
Definition: smaudio.hh:15