diff options
author | Einar Johan Trøan Sømåen | 2012-07-29 19:09:37 +0200 |
---|---|---|
committer | Einar Johan Trøan Sømåen | 2012-07-29 19:09:37 +0200 |
commit | 80a67a70cdaad254185ffd9b2042a710e4a6e338 (patch) | |
tree | 20baa5ec9555f33e7f2110b7ab717f94084728d7 /engines | |
parent | 6b07218eb24e91865eee277758112e5bb4fecd97 (diff) | |
download | scummvm-rg350-80a67a70cdaad254185ffd9b2042a710e4a6e338.tar.gz scummvm-rg350-80a67a70cdaad254185ffd9b2042a710e4a6e338.tar.bz2 scummvm-rg350-80a67a70cdaad254185ffd9b2042a710e4a6e338.zip |
WINTERMUTE: Add header-guards to BaseEngine
Diffstat (limited to 'engines')
-rw-r--r-- | engines/wintermute/base/base_engine.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/engines/wintermute/base/base_engine.h b/engines/wintermute/base/base_engine.h index 30f241ecc6..b9dcfcb845 100644 --- a/engines/wintermute/base/base_engine.h +++ b/engines/wintermute/base/base_engine.h @@ -26,6 +26,9 @@ * Copyright (c) 2011 Jan Nedoma */ +#ifndef WINTERMUTE_BASE_ENGINE_H +#define WINTERMUTE_BASE_ENGINE_H + #include "common/str.h" #include "common/singleton.h" @@ -52,3 +55,5 @@ public: }; } // end of namespace WinterMute + +#endif |