/************************************************* * BeOS EntropySource Header File * * (C) 1999-2007 Jack Lloyd * *************************************************/ #ifndef BOTAN_EXT_ENTROPY_SRC_BEOS_H__ #define BOTAN_EXT_ENTROPY_SRC_BEOS_H__ #include namespace Botan { /************************************************* * BeOS Entropy Source * *************************************************/ class BeOS_EntropySource : public Buffered_EntropySource { private: void do_fast_poll(); void do_slow_poll(); }; } #endif