Add header guards to InterfaceBase.h

This commit is contained in:
Ryan Houdek 2012-12-24 09:46:37 -06:00
parent 296b9b1c16
commit 09b05c0f6c

View File

@ -14,7 +14,8 @@
// Official SVN repository and contact information can be found at // Official SVN repository and contact information can be found at
// http://code.google.com/p/dolphin-emu/ // http://code.google.com/p/dolphin-emu/
#ifndef _GLINTERFACEBASE_H_
#define _GLINTERFACEBASE_H_
class cInterfaceBase class cInterfaceBase
{ {
protected: protected:
@ -33,4 +34,4 @@ public:
virtual void Update() { } virtual void Update() { }
virtual bool PeekMessages() { return false; } virtual bool PeekMessages() { return false; }
}; };
#endif