prepare fix for copying plugin state
[ardour.git] / libs / ardour / ardour / debug.h
1 /*
2     Copyright (C) 2009 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef __ardour_debug_h__
21 #define __ardour_debug_h__
22
23 #include <stdint.h>
24
25 #include <sstream>
26
27 #include "ardour/libardour_visibility.h"
28 #include "pbd/debug.h"
29
30 namespace PBD {
31         namespace DEBUG {
32                 LIBARDOUR_API extern DebugBits MidiSourceIO;
33                 LIBARDOUR_API extern DebugBits MidiPlaylistIO;
34                 LIBARDOUR_API extern DebugBits MidiDiskstreamIO;
35                 LIBARDOUR_API extern DebugBits SnapBBT;
36                 LIBARDOUR_API extern DebugBits Latency;
37                 LIBARDOUR_API extern DebugBits LatencyCompensation;
38                 LIBARDOUR_API extern DebugBits Peaks;
39                 LIBARDOUR_API extern DebugBits Processors;
40                 LIBARDOUR_API extern DebugBits ChanMapping;
41                 LIBARDOUR_API extern DebugBits ProcessThreads;
42                 LIBARDOUR_API extern DebugBits Graph;
43                 LIBARDOUR_API extern DebugBits Destruction;
44                 LIBARDOUR_API extern DebugBits MTC;
45                 LIBARDOUR_API extern DebugBits LTC;
46                 LIBARDOUR_API extern DebugBits Transport;
47                 LIBARDOUR_API extern DebugBits Slave;
48                 LIBARDOUR_API extern DebugBits SessionEvents;
49                 LIBARDOUR_API extern DebugBits MidiIO;
50                 LIBARDOUR_API extern DebugBits MackieControl;
51                 LIBARDOUR_API extern DebugBits MidiClock;
52                 LIBARDOUR_API extern DebugBits Monitor;
53                 LIBARDOUR_API extern DebugBits Solo;
54                 LIBARDOUR_API extern DebugBits AudioPlayback;
55                 LIBARDOUR_API extern DebugBits Panning;
56                 LIBARDOUR_API extern DebugBits LV2;
57                 LIBARDOUR_API extern DebugBits CaptureAlignment;
58                 LIBARDOUR_API extern DebugBits PluginManager;
59                 LIBARDOUR_API extern DebugBits AudioUnits;
60                 LIBARDOUR_API extern DebugBits ControlProtocols;
61                 LIBARDOUR_API extern DebugBits CycleTimers;
62                 LIBARDOUR_API extern DebugBits MidiTrackers;
63                 LIBARDOUR_API extern DebugBits Layering;
64                 LIBARDOUR_API extern DebugBits TempoMath;
65                 LIBARDOUR_API extern DebugBits TempoMap;
66                 LIBARDOUR_API extern DebugBits OrderKeys;
67                 LIBARDOUR_API extern DebugBits Automation;
68                 LIBARDOUR_API extern DebugBits WiimoteControl;
69                 LIBARDOUR_API extern DebugBits Ports;
70                 LIBARDOUR_API extern DebugBits AudioEngine;
71                 LIBARDOUR_API extern DebugBits Soundcloud;
72                 LIBARDOUR_API extern DebugBits Butler;
73                 LIBARDOUR_API extern DebugBits GenericMidi;
74                 LIBARDOUR_API extern DebugBits BackendMIDI;
75                 LIBARDOUR_API extern DebugBits BackendAudio;
76                 LIBARDOUR_API extern DebugBits BackendTiming;
77                 LIBARDOUR_API extern DebugBits BackendThreads;
78                 LIBARDOUR_API extern DebugBits BackendPorts;
79                 LIBARDOUR_API extern DebugBits VSTCallbacks;
80                 LIBARDOUR_API extern DebugBits FaderPort;
81
82         }
83 }
84
85 #endif /* __ardour_debug_h__ */
86