aboutsummaryrefslogtreecommitdiffstats
path: root/include/modules.h
blob: 499782c69d7ae91b69fce68704b2edc5e02a4c75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*************************************************
* Module Factory Header File                     *
* (C) 1999-2006 The Botan Project                *
*************************************************/

#ifndef BOTAN_MODULE_FACTORIES_H__
#define BOTAN_MODULE_FACTORIES_H__

#include <vector>
#include <string>
#include <map>

namespace Botan {

/*************************************************
* Forward Declarations                           *
*************************************************/
class Mutex_Factory;
class Timer;
class EntropySource;
class Engine;
class Allocator;

namespace Modules {

/*************************************************
* Get the module objects                         *
*************************************************/
class Mutex_Factory* get_mutex_factory();
class Timer* get_timer();
std::vector<EntropySource*> get_entropy_sources();
std::vector<Engine*> get_engines();
std::map<std::string, Allocator*> get_allocators();

}

}

#endif