From 498d7702100fd50916c7ce55d71a77999c2300e8 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Mon, 28 Jul 2003 09:56:14 +0000 Subject: [PATCH] Add virtual dtor --- stepmania/src/NotesLoader.h | 1 + 1 file changed, 1 insertion(+) diff --git a/stepmania/src/NotesLoader.h b/stepmania/src/NotesLoader.h index 5da6eebf23..d07be126af 100644 --- a/stepmania/src/NotesLoader.h +++ b/stepmania/src/NotesLoader.h @@ -28,6 +28,7 @@ protected: set BlacklistedImages; public: + virtual ~NotesLoader() { } const set &GetBlacklistedImages() const { return BlacklistedImages; } static void GetMainAndSubTitlesFromFullTitle( const CString sFullTitle, CString &sMainTitleOut, CString &sSubTitleOut ); virtual bool LoadFromDir( CString sPath, Song &out ) = 0;