diff options
author | lloyd <[email protected]> | 2008-10-08 02:12:50 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-10-08 02:12:50 +0000 |
commit | dbec5c3bbbd53f1a208707300752e59213cf53c6 (patch) | |
tree | ebc5bf983b3a3c42ad56f87380148cc75806573a /src/utils/timer | |
parent | 553427397376c1110199aeda91a76bc1b8f58066 (diff) |
Mark classes with BOTAN_DLL macro for DLL visibility
Diffstat (limited to 'src/utils/timer')
-rw-r--r-- | src/utils/timer/cpu_counter/tm_hard.h | 2 | ||||
-rw-r--r-- | src/utils/timer/gettimeofday/tm_unix.h | 2 | ||||
-rw-r--r-- | src/utils/timer/posix_rt/tm_posix.h | 2 | ||||
-rw-r--r-- | src/utils/timer/win32_query_perf_ctr/tm_win32.h | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/utils/timer/cpu_counter/tm_hard.h b/src/utils/timer/cpu_counter/tm_hard.h index 678513f81..1ed100bad 100644 --- a/src/utils/timer/cpu_counter/tm_hard.h +++ b/src/utils/timer/cpu_counter/tm_hard.h @@ -13,7 +13,7 @@ namespace Botan { /************************************************* * Hardware Timer * *************************************************/ -class Hardware_Timer : public Timer +class BOTAN_DLL Hardware_Timer : public Timer { public: u64bit clock() const; diff --git a/src/utils/timer/gettimeofday/tm_unix.h b/src/utils/timer/gettimeofday/tm_unix.h index fd24a1563..65c86b396 100644 --- a/src/utils/timer/gettimeofday/tm_unix.h +++ b/src/utils/timer/gettimeofday/tm_unix.h @@ -13,7 +13,7 @@ namespace Botan { /************************************************* * Unix Timer * *************************************************/ -class Unix_Timer : public Timer +class BOTAN_DLL Unix_Timer : public Timer { public: u64bit clock() const; diff --git a/src/utils/timer/posix_rt/tm_posix.h b/src/utils/timer/posix_rt/tm_posix.h index fc3ccdc74..7393646e1 100644 --- a/src/utils/timer/posix_rt/tm_posix.h +++ b/src/utils/timer/posix_rt/tm_posix.h @@ -13,7 +13,7 @@ namespace Botan { /************************************************* * POSIX Timer * *************************************************/ -class POSIX_Timer : public Timer +class BOTAN_DLL POSIX_Timer : public Timer { public: u64bit clock() const; diff --git a/src/utils/timer/win32_query_perf_ctr/tm_win32.h b/src/utils/timer/win32_query_perf_ctr/tm_win32.h index 67b045e78..09f30de4b 100644 --- a/src/utils/timer/win32_query_perf_ctr/tm_win32.h +++ b/src/utils/timer/win32_query_perf_ctr/tm_win32.h @@ -13,7 +13,7 @@ namespace Botan { /************************************************* * Win32 Timer * *************************************************/ -class Win32_Timer : public Timer +class BOTAN_DLL Win32_Timer : public Timer { public: u64bit clock() const; |