From b4c9106bf8065bdbe2ee13ea553ccd41c6da984f Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Sun, 13 Mar 2011 13:46:51 -0400 Subject: [PATCH] doxygen confusing autogen code. TODO: Look into a more intelligent mapping based on the individual styles...if possible. --- src/NoteDataUtil.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/NoteDataUtil.h b/src/NoteDataUtil.h index c09778eae8..76b633f89a 100644 --- a/src/NoteDataUtil.h +++ b/src/NoteDataUtil.h @@ -24,7 +24,21 @@ namespace NoteDataUtil void GetSMNoteDataString( const NoteData &in, RString ¬es_out ); void SplitCompositeNoteData( const NoteData &in, vector &out ); void CombineCompositeNoteData( NoteData &out, const vector &in ); + /** + * @brief Autogenerate notes from one type to another. + * + * TODO: Look into a more intelligent way of doing so. + * @param in The original NoteData. + * @param out the new NoteData. + * @param iNewNumTracks the number of tracks/columns of the new NoteData. */ void LoadTransformedSlidingWindow( const NoteData &in, NoteData &out, int iNewNumTracks ); + /** + * @brief Autogenerate notes from one type to another. + * + * NOTE: This code assumes that there are more columns in the original type. + * @param in The original NoteData. + * @param out the new NoteData. + * @param iNewNumTracks the number of tracks/columns of the new NoteData. */ void LoadOverlapped( const NoteData &in, NoteData &out, int iNewNumTracks ); void LoadTransformedLights( const NoteData &in, NoteData &out, int iNewNumTracks ); void LoadTransformedLightsFromTwo( const NoteData &marquee, const NoteData &bass, NoteData &out );