summaryrefslogtreecommitdiffstats
path: root/raul/TimeStamp.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-05-18 15:52:39 +0000
committerDavid Robillard <d@drobilla.net>2011-05-18 15:52:39 +0000
commit7bd4febfdb799cd359a380d23640654f476dadae (patch)
tree7acf0526548382e3768b45628a47f094120b7724 /raul/TimeStamp.hpp
parent3a1a098d7d41468a74862777d3085f537fb6b894 (diff)
downloadraul-7bd4febfdb799cd359a380d23640654f476dadae.tar.gz
raul-7bd4febfdb799cd359a380d23640654f476dadae.tar.bz2
raul-7bd4febfdb799cd359a380d23640654f476dadae.zip
Strip double blank lines.
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@3279 a436a847-0d15-0410-975c-d299462d15a1
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