From c1858f6920474ff4e69b7fc7f846e2bb4bcdd1b9 Mon Sep 17 00:00:00 2001 From: AJ Kelly Date: Fri, 4 Mar 2011 20:55:39 -0600 Subject: [PATCH] cleanup and a small doxy note --- src/TimingData.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/TimingData.h b/src/TimingData.h index 9c2e0b9fe9..022116102e 100644 --- a/src/TimingData.h +++ b/src/TimingData.h @@ -11,7 +11,7 @@ struct lua_State; /** * @brief Identifies when a song changes its BPM. */ -struct BPMSegment +struct BPMSegment { /** * @brief Creates a simple BPM Segment with default values. @@ -99,7 +99,7 @@ struct BPMSegment * * It is hopeful that stops and delays can be made into their own segments at some point. */ -struct StopSegment +struct StopSegment { /** * @brief Creates a simple Stop Segment with default values. @@ -208,7 +208,7 @@ struct StopSegment * This only supports simple time signatures. The upper number (called the numerator here, though this isn't * properly a fraction) is the number of beats per measure. The lower number (denominator here) * is the note value representing one beat. */ -struct TimeSignatureSegment +struct TimeSignatureSegment { /** * @brief Creates a simple Time Signature Segment with default values. @@ -218,6 +218,7 @@ struct TimeSignatureSegment * @brief Creates a Time Signature Segment at the given row with a supplied numerator. * @param r the starting row of the segment. * @param n the numerator for the segment. + * This creates a TimeSignature with the specified row and numerator. The denominator will be 4. */ TimeSignatureSegment( int r, int n ) { m_iStartRow = max( 0, r );