aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-12-28 16:01:37 +0000
committerlloyd <[email protected]>2010-12-28 16:01:37 +0000
commitcfda815f55d5ad28374198a9c1e76fc07f519431 (patch)
treeafd0ff6e348d5057af918677a454d366f80c651e /src/engine
parent6720ec251d88ea23f232fd06d55c3b9694b82af1 (diff)
Add header guard
Diffstat (limited to 'src/engine')
-rw-r--r--src/engine/dyn_engine/dyn_engine.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/engine/dyn_engine/dyn_engine.h b/src/engine/dyn_engine/dyn_engine.h
index d8e92cb02..a73a58d8f 100644
--- a/src/engine/dyn_engine/dyn_engine.h
+++ b/src/engine/dyn_engine/dyn_engine.h
@@ -5,6 +5,9 @@
* Distributed under the terms of the Botan license
*/
+#ifndef BOTAN_DYN_LOADED_ENGINE_H__
+#define BOTAN_DYN_LOADED_ENGINE_H__
+
#include <botan/engine.h>
namespace Botan {
@@ -104,3 +107,5 @@ class BOTAN_DLL Dynamically_Loaded_Engine : public Engine
};
}
+
+#endif