From ce59fe80116a32b40a5737388459b62d1d09be44 Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Fri, 18 Feb 2011 16:39:09 -0500 Subject: [PATCH] More testing of the CIA bot. --- src/Song.h | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/Song.h b/src/Song.h index eff9ecab89..de2b54d5b8 100644 --- a/src/Song.h +++ b/src/Song.h @@ -72,7 +72,11 @@ public: void Reset(); void DetachSteps(); - // This one assumes the song is currently empty + /** + * @brief Load a song from the chosen directory. + * + * This assumes that there is no song present right now. + * @param sDir the song directory from which to load. */ bool LoadFromSongDir( RString sDir ); // This one takes the effort to reuse Steps pointers as best as it can bool ReloadFromSongDir( RString sDir ); @@ -82,7 +86,8 @@ public: void TranslateTitles(); // called by TidyUpData bool SaveToSSCFile( RString sPath, bool bSavingCache ); - void Save(); // saves SSC and SM guaranteed. + /** @brief Save to the SSC and SM files no matter what. */ + void Save(); bool SaveToCacheFile(); bool SaveToSMFile(); bool SaveToDWIFile();