From 09b05c0f6c0f29c69e211085542f762731f9a231 Mon Sep 17 00:00:00 2001 From: Ryan Houdek Date: Mon, 24 Dec 2012 09:46:37 -0600 Subject: [PATCH] Add header guards to InterfaceBase.h --- Source/Core/DolphinWX/Src/VideoInterface/InterfaceBase.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Source/Core/DolphinWX/Src/VideoInterface/InterfaceBase.h b/Source/Core/DolphinWX/Src/VideoInterface/InterfaceBase.h index 8fa4cc1b12..0c1c438cd0 100644 --- a/Source/Core/DolphinWX/Src/VideoInterface/InterfaceBase.h +++ b/Source/Core/DolphinWX/Src/VideoInterface/InterfaceBase.h @@ -14,7 +14,8 @@ // Official SVN repository and contact information can be found at // http://code.google.com/p/dolphin-emu/ - +#ifndef _GLINTERFACEBASE_H_ +#define _GLINTERFACEBASE_H_ class cInterfaceBase { protected: @@ -33,4 +34,4 @@ public: virtual void Update() { } virtual bool PeekMessages() { return false; } }; - +#endif