aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-05-04 16:52:43 +0000
committerlloyd <[email protected]>2008-05-04 16:52:43 +0000
commit6ad077129096982e3c58cd4c1ffc61ec71aef228 (patch)
tree100b22a1805aa0153486c8ea7ecfdf19c37cb4b7
parent2088b737da27bf8bf035837ae4ea3e4f3c4b0bc0 (diff)
Remove unused headers
-rw-r--r--include/libstate.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/include/libstate.h b/include/libstate.h
index 6c59c6c03..77a6ce05b 100644
--- a/include/libstate.h
+++ b/include/libstate.h
@@ -1,15 +1,13 @@
/*************************************************
* Library Internal/Global State Header File *
-* (C) 1999-2007 Jack Lloyd *
+* (C) 1999-2008 Jack Lloyd *
*************************************************/
#ifndef BOTAN_LIB_STATE_H__
#define BOTAN_LIB_STATE_H__
#include <botan/base.h>
-#include <botan/enums.h>
#include <botan/init.h>
-#include <botan/ui.h>
#include <string>
#include <vector>
#include <map>
@@ -66,18 +64,19 @@ class BOTAN_DLL Library_State
class Engine* get_engine_n(u32bit) const;
class Mutex_Factory* mutex_factory;
- class Mutex* allocator_lock;
- class Mutex* engine_lock;
- class Mutex* rng_lock;
mutable class Config* config_obj;
+ class Mutex* allocator_lock;
std::map<std::string, Allocator*> alloc_factory;
mutable Allocator* cached_default_allocator;
+ class Mutex* rng_lock;
RandomNumberGenerator* rng;
std::vector<Allocator*> allocators;
std::vector<EntropySource*> entropy_sources;
+
+ class Mutex* engine_lock;
std::vector<class Engine*> engines;
};