implement HiddenPtr smart pointer type; use it for Steps. This avoids having
to write a whole copy constructor for a class just to hide a couple types from the header.
This commit is contained in:
@@ -16,6 +16,7 @@
|
||||
#include "global.h"
|
||||
#include "Steps.h"
|
||||
#include "StepsUtil.h"
|
||||
#include "song.h"
|
||||
#include "RageUtil.h"
|
||||
#include "RageLog.h"
|
||||
#include "NoteData.h"
|
||||
@@ -41,7 +42,6 @@ Steps::Steps()
|
||||
|
||||
Steps::~Steps()
|
||||
{
|
||||
delete m_pNoteData;
|
||||
}
|
||||
|
||||
void Steps::SetNoteData( const NoteData& noteDataNew )
|
||||
|
||||
Reference in New Issue
Block a user