/* Copyright (C) 2009 Paul Davis This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #include #include #include "ardour/debug.h" using namespace std; uint64_t PBD::DEBUG::MidiSourceIO = PBD::new_debug_bit ("midisourceio"); uint64_t PBD::DEBUG::MidiPlaylistIO = PBD::new_debug_bit ("midiplaylistio"); uint64_t PBD::DEBUG::MidiDiskstreamIO = PBD::new_debug_bit ("mididiskstreamio"); uint64_t PBD::DEBUG::SnapBBT = PBD::new_debug_bit ("snapbbt"); uint64_t PBD::DEBUG::Configuration = PBD::new_debug_bit ("configuration"); uint64_t PBD::DEBUG::Latency = PBD::new_debug_bit ("latency"); uint64_t PBD::DEBUG::Processors = PBD::new_debug_bit ("processors"); uint64_t PBD::DEBUG::Graph = PBD::new_debug_bit ("graph"); uint64_t PBD::DEBUG::Destruction = PBD::new_debug_bit ("destruction"); uint64_t PBD::DEBUG::MTC = PBD::new_debug_bit ("mtc"); uint64_t PBD::DEBUG::Transport = PBD::new_debug_bit ("transport"); uint64_t PBD::DEBUG::Slave = PBD::new_debug_bit ("slave"); uint64_t PBD::DEBUG::SessionEvents = PBD::new_debug_bit ("sessionevents"); uint64_t PBD::DEBUG::MidiIO = PBD::new_debug_bit ("midiio"); uint64_t PBD::DEBUG::MackieControl = PBD::new_debug_bit ("mackiecontrol"); uint64_t PBD::DEBUG::MidiClock = PBD::new_debug_bit ("midiclock"); uint64_t PBD::DEBUG::Monitor = PBD::new_debug_bit ("monitor"); uint64_t PBD::DEBUG::Solo = PBD::new_debug_bit ("solo"); uint64_t PBD::DEBUG::AudioPlayback = PBD::new_debug_bit ("audioplayback");