From 5a3e2fac3f01d3c823d09048e2239b6e1f9ccbe6 Mon Sep 17 00:00:00 2001 From: Andrew Wong Date: Tue, 15 Jul 2003 11:44:40 +0000 Subject: [PATCH] fix - better abstraction than setting entire class public --- stepmania/src/arch/ArchHooks/ArchHooks.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stepmania/src/arch/ArchHooks/ArchHooks.h b/stepmania/src/arch/ArchHooks/ArchHooks.h index 09612f9c5f..c939bb7cb5 100644 --- a/stepmania/src/arch/ArchHooks/ArchHooks.h +++ b/stepmania/src/arch/ArchHooks/ArchHooks.h @@ -17,10 +17,11 @@ */ class ArchHooks { -public: +protected: bool MessageIsIgnored( CString ID ); void IgnoreMessage( CString ID ); +public: /* This receives all logs. 'important' is set for Warn and Info. */ virtual void Log(CString str, bool important) { }