The unified diff between revisions [6afe2db1..] and [4e40e885..] is displayed below. It can also be downloaded as a raw diff.

This diff has been restricted to the following files: 'include/timers.h'

#
#
# patch "include/timers.h"
#  from [30ce6b52c2033dd4b7e07d481cad8f5645b64559]
#    to [1924a8a71eece12b946c93dfa0189f3dde13e21a]
#
============================================================
--- include/timers.h	30ce6b52c2033dd4b7e07d481cad8f5645b64559
+++ include/timers.h	1924a8a71eece12b946c93dfa0189f3dde13e21a
@@ -6,17 +6,19 @@
 #ifndef BOTAN_TIMERS_H__
 #define BOTAN_TIMERS_H__

-#include <botan/types.h>
+#include <botan/base.h>

 namespace Botan {

 /*************************************************
 * Timer Interface                                *
 *************************************************/
-class Timer
+class BOTAN_DLL Timer : public EntropySource
    {
    public:
       virtual u64bit clock() const;
+      u32bit slow_poll(byte[], u32bit);
+
       virtual ~Timer() {}
    protected:
       static u64bit combine_timers(u32bit, u32bit, u32bit);