aboutsummaryrefslogtreecommitdiffstats
path: root/include/init.h
blob: 6a3fcdbbd2bde104db3ab9b2a56be5b98655c27e (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
/*************************************************
* Library Initialization Header File             *
* (C) 1999-2006 The Botan Project                *
*************************************************/

#ifndef BOTAN_INIT_H__
#define BOTAN_INIT_H__

#include <string>

namespace Botan {

namespace Init {

/*************************************************
* Main Library Initialization/Shutdown Functions *
*************************************************/
void initialize(const std::string& = "");
void deinitialize();

}

/*************************************************
* Library Initialization/Shutdown Object         *
*************************************************/
class LibraryInitializer
   {
   public:
      LibraryInitializer(const std::string& = "");
      ~LibraryInitializer();
   };

}

#endif