blob: d540864b2843d3d579eed0bd413ef42b200bc375 (
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
|
/*
* Version Information
* (C) 1999-2007 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/
#include <botan/version.h>
#include <botan/parsing.h>
namespace Botan {
/*
These are intentionally compiled rather than inlined, so an
application running against a shared library can test the true
version they are running against.
*/
/*
* Return the version as a string
*/
std::string version_string()
{
return to_string(version_major()) + "." +
to_string(version_minor()) + "." +
to_string(version_patch());
}
/*
* Return parts of the version as integers
*/
u32bit version_major() { return BOTAN_VERSION_MAJOR; }
u32bit version_minor() { return BOTAN_VERSION_MINOR; }
u32bit version_patch() { return BOTAN_VERSION_PATCH; }
}
|