diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-01-09 23:18:13 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-01-09 23:18:13 +0000 |
| commit | 41daa5821b3d3b0f450094fbf0d1e37a449f482c (patch) | |
| tree | 623e5aa9370dbb78bba14e9833a4ea0d1e026e22 /src/dcp_time.h | |
| parent | e651d843c513e8dbf0967735ea702a3795ac321d (diff) | |
Comment tweaks.
Diffstat (limited to 'src/dcp_time.h')
| -rw-r--r-- | src/dcp_time.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/dcp_time.h b/src/dcp_time.h index 8033348b..48698dcc 100644 --- a/src/dcp_time.h +++ b/src/dcp_time.h @@ -39,7 +39,13 @@ public: * and a frames per second count. */ Time (int frame, int frames_per_second); - + + /** Construct a Time from hours, minutes, seconds and ticks. + * @param h_ Hours. + * @param m_ Minutes. + * @param s_ Seconds. + * @param t_ Ticks (where 1 tick is 4 milliseconds). + */ Time (int h_, int m_, int s_, int t_) : h (h_) , m (m_) |
