globally remove all trailing whitespace from ardour code base.
[ardour.git] / libs / evoral / evoral / types.hpp
index 000b79bb94c621b58046e2054cf8c7cf822c583e..7d3f41514200d2a802c7992932a9ddd7e6a05ba0 100644 (file)
 #ifndef EVORAL_TYPES_HPP
 #define EVORAL_TYPES_HPP
 
+#include <float.h>
+#include <math.h>
 #include <stdint.h>
+
+#include <iostream>
+#include <limits>
 #include <list>
-#include <cmath>
-#include <cfloat>
+
+#include "pbd/debug.h"
+
+#include "evoral/Beats.hpp"
+#include "evoral/visibility.h"
 
 #include "pbd/debug.h"
 
@@ -33,43 +41,6 @@ namespace Evoral {
 */
 typedef int32_t event_id_t;
 
-/** Musical time: beats relative to some defined origin */
-typedef double MusicalTime;
-const MusicalTime MaxMusicalTime = DBL_MAX;
-const MusicalTime MinMusicalTime = DBL_MIN;
-
-static inline bool musical_time_equal (MusicalTime a, MusicalTime b) {
-       /* acceptable tolerance is 1 tick. Nice if there was no magic number here */
-       return fabs (a - b) <= (1.0/1920.0);
-}
-
-static inline bool musical_time_less_than (MusicalTime a, MusicalTime b) {
-       /* acceptable tolerance is 1 tick. Nice if there was no magic number here */
-       if (fabs (a - b) <= (1.0/1920.0)) {
-               return false; /* effectively identical */
-       } else {
-               return a < b;
-       }
-}
-
-static inline bool musical_time_greater_than (MusicalTime a, MusicalTime b) {
-       /* acceptable tolerance is 1 tick. Nice if there was no magic number here */
-       if (fabs (a - b) <= (1.0/1920.0)) {
-               return false; /* effectively identical */
-       } else {
-               return a > b;
-       }
-}
-
-static inline bool musical_time_greater_or_equal_to (MusicalTime a, MusicalTime b) {
-       /* acceptable tolerance is 1 tick. Nice if there was no magic number here */
-       if (fabs (a - b) <= (1.0/1920.0)) {
-               return true; /* effectively identical, note the "or_equal_to" */
-       } else {
-               return a >= b;
-       }
-}
-
 /** Type of an event (opaque, mapped by application) */
 typedef uint32_t EventType;
 
@@ -77,9 +48,9 @@ typedef uint32_t EventType;
 
 namespace PBD {
        namespace DEBUG {
-               extern uint64_t Sequence;
-               extern uint64_t Note;
-               extern uint64_t ControlList;
+               LIBEVORAL_API extern DebugBits Sequence;
+               LIBEVORAL_API extern DebugBits Note;
+               LIBEVORAL_API extern DebugBits ControlList;
        }
 }