From 5b0620ff8873fe0edd3e7e868e34e56d88fa1184 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Sun, 22 Jul 2007 08:35:29 +0000 Subject: [PATCH] Make internal functions private. --- stepmania/src/ScoreKeeperNormal.h | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/stepmania/src/ScoreKeeperNormal.h b/stepmania/src/ScoreKeeperNormal.h index 1b06ea1981..54d9476915 100644 --- a/stepmania/src/ScoreKeeperNormal.h +++ b/stepmania/src/ScoreKeeperNormal.h @@ -61,10 +61,6 @@ public: void HandleHoldActiveSeconds( float fMusicSecondsHeld ) {}; void HandleHoldCheckpointScore( const NoteData &nd, int iRow, int iNumHoldsHeldThisRow, int iNumHoldsMissedThisRow ); - void HandleTapNoteScoreInternal( TapNoteScore tns, TapNoteScore maximum ); - void HandleComboInternal( int iNumHitContinueCombo, int iNumHitMaintainCombo, int iNumBreakCombo, int iNumMissedInRow ); - void GetRowCounts( const NoteData &nd, int iRow, int &iNumHitContinueCombo, int &iNumHitMaintainCombo, int &iNumBreakCombo, int &iNumMissedInRow ); - // This must be calculated using only cached radar values so that we can // do it quickly. static int GetPossibleDancePoints( const RadarValues& fRadars ); @@ -80,6 +76,12 @@ public: static int HoldNoteScoreToDancePoints( HoldNoteScore hns, bool bBeginner ); static int TapNoteScoreToGradePoints( TapNoteScore tns, bool bBeginner ); static int HoldNoteScoreToGradePoints( HoldNoteScore hns, bool bBeginner ); + +private: + void HandleTapNoteScoreInternal( TapNoteScore tns, TapNoteScore maximum ); + void HandleComboInternal( int iNumHitContinueCombo, int iNumHitMaintainCombo, int iNumBreakCombo, int iNumMissedInRow ); + void GetRowCounts( const NoteData &nd, int iRow, int &iNumHitContinueCombo, int &iNumHitMaintainCombo, int &iNumBreakCombo, int &iNumMissedInRow ); + }; #endif