summaryrefslogtreecommitdiffstats
path: root/old/botan/src/entropy/beos_stats/es_beos.h
diff options
context:
space:
mode:
Diffstat (limited to 'old/botan/src/entropy/beos_stats/es_beos.h')
-rw-r--r--old/botan/src/entropy/beos_stats/es_beos.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/old/botan/src/entropy/beos_stats/es_beos.h b/old/botan/src/entropy/beos_stats/es_beos.h
new file mode 100644
index 0000000..be80ad3
--- /dev/null
+++ b/old/botan/src/entropy/beos_stats/es_beos.h
@@ -0,0 +1,28 @@
+/**
+* BeOS EntropySource
+* (C) 1999-2008 Jack Lloyd
+*
+* Distributed under the terms of the Botan license
+*/
+
+#ifndef BOTAN_ENTROPY_SRC_BEOS_H__
+#define BOTAN_ENTROPY_SRC_BEOS_H__
+
+#include <botan/entropy_src.h>
+
+namespace Botan {
+
+/**
+* BeOS Entropy Source
+*/
+class BOTAN_DLL BeOS_EntropySource : public EntropySource
+ {
+ private:
+ std::string name() const { return "BeOS Statistics"; }
+
+ void poll(Entropy_Accumulator& accum);
+ };
+
+}
+
+#endif