summaryrefslogtreecommitdiff
path: root/libs/evoral/evoral/types.hpp
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2010-05-31 19:47:15 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2010-05-31 19:47:15 +0000
commitdb6706429643d80e68a050daa015d17f36d5321b (patch)
tree1cc41a1d46050029082825043ed07663b0b6d72f /libs/evoral/evoral/types.hpp
parentc51d6a15829439242c8520a78b8d89ed06cc697b (diff)
switch Evoral::Sequence debugging to use DEBUG_TRACE(); Sequence uses multiset<...,EarlierNoteComparator> for _write_notes, does FIFO note resolution for overlapping notes in SMF file; implement Sequence::overlaps() ... current use is uncertain; ARDOUR::coverage() uses 64bit framepos_t
git-svn-id: svn://localhost/ardour2/branches/3.0@7199 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/evoral/evoral/types.hpp')
-rw-r--r--libs/evoral/evoral/types.hpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/libs/evoral/evoral/types.hpp b/libs/evoral/evoral/types.hpp
index a2cc814c69..5ae646c292 100644
--- a/libs/evoral/evoral/types.hpp
+++ b/libs/evoral/evoral/types.hpp
@@ -24,6 +24,8 @@
#include <cmath>
#include <cfloat>
+#include "pbd/debug.h"
+
namespace Evoral {
/** Frame count (i.e. length of time in audio frames) */
@@ -53,4 +55,11 @@ struct RangeMove {
} // namespace Evoral
+namespace PBD {
+ namespace DEBUG {
+ extern uint64_t Sequence;
+ extern uint64_t Note;
+ }
+}
+
#endif // EVORAL_TYPES_HPP