diff options
author | lloyd <[email protected]> | 2006-12-14 10:35:46 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2006-12-14 10:35:46 +0000 |
commit | d9a6bc5753ed4f2386c6780dff9ad03a95b11113 (patch) | |
tree | e8324ece0f24a77f961668977425e1494c154047 /include | |
parent | de43fade8c8a51fd548febedc942f29413b94eca (diff) |
The symkey.h header no longer needs to include enums.h; remove it
Add include directives for enums.h in the headers that need it now that
it isn't being pulled in by symkey.h
Diffstat (limited to 'include')
-rw-r--r-- | include/base64.h | 1 | ||||
-rw-r--r-- | include/engine.h | 1 | ||||
-rw-r--r-- | include/hex.h | 1 | ||||
-rw-r--r-- | include/libstate.h | 1 | ||||
-rw-r--r-- | include/symkey.h | 1 |
5 files changed, 4 insertions, 1 deletions
diff --git a/include/base64.h b/include/base64.h index 98b195e58..bd3921ab8 100644 --- a/include/base64.h +++ b/include/base64.h @@ -7,6 +7,7 @@ #define BOTAN_BASE64_H__ #include <botan/filter.h> +#include <botan/enums.h> namespace Botan { diff --git a/include/engine.h b/include/engine.h index 101138e8a..15609ad73 100644 --- a/include/engine.h +++ b/include/engine.h @@ -11,6 +11,7 @@ #include <botan/pk_ops.h> #include <botan/pow_mod.h> #include <botan/basefilt.h> +#include <botan/enums.h> #include <utility> #include <map> diff --git a/include/hex.h b/include/hex.h index e3bfffbac..d768bb887 100644 --- a/include/hex.h +++ b/include/hex.h @@ -7,6 +7,7 @@ #define BOTAN_HEX_H__ #include <botan/filter.h> +#include <botan/enums.h> namespace Botan { diff --git a/include/libstate.h b/include/libstate.h index 334b1501f..c2e217df7 100644 --- a/include/libstate.h +++ b/include/libstate.h @@ -7,6 +7,7 @@ #define BOTAN_LIB_STATE_H__ #include <botan/base.h> +#include <botan/enums.h> #include <string> #include <vector> #include <map> diff --git a/include/symkey.h b/include/symkey.h index 253c65ed6..f703b66a9 100644 --- a/include/symkey.h +++ b/include/symkey.h @@ -7,7 +7,6 @@ #define BOTAN_SYMKEY_H__ #include <botan/secmem.h> -#include <botan/enums.h> #include <string> namespace Botan { |