|
Botan
1.11.15
|
#include <compress_utils.h>
Static Public Member Functions | |
| static void | free (void *self, void *ptr) |
| template<typename T > | |
| static void * | malloc (void *self, T n, T size) |
Definition at line 21 of file compress_utils.h.
| static void Botan::Compression_Alloc_Info::free | ( | void * | self, |
| void * | ptr | ||
| ) | [inline, static] |
Definition at line 30 of file compress_utils.h.
{
static_cast<Compression_Alloc_Info*>(self)->do_free(ptr);
}
| static void* Botan::Compression_Alloc_Info::malloc | ( | void * | self, |
| T | n, | ||
| T | size | ||
| ) | [inline, static] |
Definition at line 25 of file compress_utils.h.
{
return static_cast<Compression_Alloc_Info*>(self)->do_malloc(n, size);
}
1.7.6.1