Botan 1.10.17
es_beos.h
Go to the documentation of this file.
1/*
2* BeOS EntropySource
3* (C) 1999-2008 Jack Lloyd
4*
5* Distributed under the terms of the Botan license
6*/
7
8#ifndef BOTAN_ENTROPY_SRC_BEOS_H__
9#define BOTAN_ENTROPY_SRC_BEOS_H__
10
11#include <botan/entropy_src.h>
12
13namespace Botan {
14
15/**
16* BeOS Entropy Source
17*/
19 {
20 private:
21 std::string name() const { return "BeOS Statistics"; }
22
23 void poll(Entropy_Accumulator& accum);
24 };
25
26}
27
28#endif