aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/iphone/osys_main.h
diff options
context:
space:
mode:
authorJohannes Schickel2012-02-19 21:44:37 +0100
committerJohannes Schickel2012-02-19 21:44:37 +0100
commit13358c541df46b03d3c25a9fa7e4615c64424517 (patch)
tree847d33aab03a76b66cadd416ce8bff0b5fe60bec /backends/platform/iphone/osys_main.h
parent3d0316ccd215cbb1530f665ff195554e46559efe (diff)
downloadscummvm-rg350-13358c541df46b03d3c25a9fa7e4615c64424517.tar.gz
scummvm-rg350-13358c541df46b03d3c25a9fa7e4615c64424517.tar.bz2
scummvm-rg350-13358c541df46b03d3c25a9fa7e4615c64424517.zip
IPHONE: Add include guards.
Diffstat (limited to 'backends/platform/iphone/osys_main.h')
-rw-r--r--backends/platform/iphone/osys_main.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/backends/platform/iphone/osys_main.h b/backends/platform/iphone/osys_main.h
index 04b82ab5e4..993c1aab4c 100644
--- a/backends/platform/iphone/osys_main.h
+++ b/backends/platform/iphone/osys_main.h
@@ -20,6 +20,9 @@
*
*/
+#ifndef BACKENDS_PLATFORM_IPHONE_OSYS_MAIN_H
+#define BACKENDS_PLATFORM_IPHONE_OSYS_MAIN_H
+
#include "graphics/surface.h"
#include "iphone_common.h"
#include "backends/base-backend.h"
@@ -208,3 +211,5 @@ protected:
bool handleEvent_mouseDragged(Common::Event &event, int x, int y);
bool handleEvent_mouseSecondDragged(Common::Event &event, int x, int y);
};
+
+#endif