aboutsummaryrefslogtreecommitdiff
path: root/engines/dm/objectman.h
diff options
context:
space:
mode:
authorBendegúz Nagy2016-09-03 10:47:16 +0200
committerBendegúz Nagy2016-09-03 10:47:16 +0200
commitcb8fca46c5495d8f27c96ab4aa5b23c16910df0e (patch)
treee5e2f84371607323e1d2aaf9757ba417de1ce28a /engines/dm/objectman.h
parentcd3b485952b71244392f594164e60b96a07fb23c (diff)
downloadscummvm-rg350-cb8fca46c5495d8f27c96ab4aa5b23c16910df0e.tar.gz
scummvm-rg350-cb8fca46c5495d8f27c96ab4aa5b23c16910df0e.tar.bz2
scummvm-rg350-cb8fca46c5495d8f27c96ab4aa5b23c16910df0e.zip
DM: Fix include headers
Add DM_ prefix Add missing include guards
Diffstat (limited to 'engines/dm/objectman.h')
-rw-r--r--engines/dm/objectman.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/engines/dm/objectman.h b/engines/dm/objectman.h
index 6c128eaa82..9d42d6b93f 100644
--- a/engines/dm/objectman.h
+++ b/engines/dm/objectman.h
@@ -25,6 +25,9 @@
* maintainer of the Dungeon Master Encyclopaedia (http://dmweb.free.fr/)
*/
+#ifndef DM_OBJECTMAN_H
+#define DM_OBJECTMAN_H
+
#include "dm/dm.h"
#include "dm/champion.h"
@@ -69,3 +72,5 @@ public:
};
}
+
+#endif