require new JACK API; fix inheritance bug in AudioRegion::verify_*()
[ardour.git] / libs / midi++2 / midi++ / types.h
index b9d9bf33e7c4d6f7abb5e3bee7395e41f9a8f0ae..a7929e16f53a0ac6c2a384dd32fdf2aa51e15aef 100644 (file)
@@ -1,12 +1,35 @@
+/*
+    Copyright (C) 2000-2007 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.
+
+*/
+
 #ifndef __midi_types_h__
 #define __midi_types_h__
 
+#include <inttypes.h>
+
 namespace MIDI {
 
        typedef char           channel_t;
-       typedef float controller_value_t;
+       typedef float          controller_value_t;
        typedef unsigned char  byte;
        typedef unsigned short pitchbend_t;
+       typedef uint32_t       nframes_t;
+       typedef uint32_t       timestamp_t;
 
        enum eventType {
            none = 0x0,
@@ -57,10 +80,10 @@ namespace MIDI {
     enum MTC_Status {
            MTC_Stopped = 0,
            MTC_Forward,
-           MTC_Backward,
+           MTC_Backward
     };
 
-}; /* namespace MIDI */
+} // namespace MIDI
 
 #endif // __midi_types_h__