summaryrefslogtreecommitdiffstats
path: root/raul/TimeStamp.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'raul/TimeStamp.hpp')
-rw-r--r--raul/TimeStamp.hpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/raul/TimeStamp.hpp b/raul/TimeStamp.hpp
index f9dd588..8bdb49e 100644
--- a/raul/TimeStamp.hpp
+++ b/raul/TimeStamp.hpp
@@ -26,7 +26,6 @@
namespace Raul {
-
/** A type of time stamp
* \ingroup raul
*/
@@ -67,7 +66,6 @@ private:
uint32_t _ppt;
};
-
/** A real-time time stamp (possible units: frame, absolute (s), or beat).
*
* This is a uint32_t:uint32_t fixed point representation, capable of
@@ -194,7 +192,6 @@ private:
TimeUnit _unit;
};
-
static inline std::ostream&
operator<<(std::ostream& os, const TimeStamp& t)
{
@@ -213,7 +210,6 @@ operator<<(std::ostream& os, const TimeStamp& t)
return os;
}
-
class FrameStamp : public TimeStamp {
public:
inline FrameStamp(uint32_t rate, uint32_t ticks=0, uint32_t subticks=0)
@@ -221,7 +217,6 @@ public:
{}
};
-
class BeatStamp : public TimeStamp {
public:
inline BeatStamp(uint32_t ppqn, uint32_t ticks=0, uint32_t subticks=0)
@@ -229,12 +224,10 @@ public:
{}
};
-
/** Same thing as TimeStamp really, but makes code clearer and enforces
* correct semantics via type safety */
typedef TimeStamp TimeDuration;
-
} // namespace Raul
#endif // RAUL_TIME_STAMP_HPP