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 | |
parent | 553427397376c1110199aeda91a76bc1b8f58066 (diff) |
Mark classes with BOTAN_DLL macro for DLL visibility
Diffstat (limited to 'src')
-rw-r--r-- | src/utils/mutex/pthreads/mux_pthr.h | 2 | ||||
-rw-r--r-- | src/utils/mutex/qt_mutex/mux_qt.h | 2 | ||||
-rw-r--r-- | src/utils/mutex/win32_crit_section/mux_win32.h | 2 | ||||
-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 |
7 files changed, 7 insertions, 7 deletions
diff --git a/src/utils/mutex/pthreads/mux_pthr.h b/src/utils/mutex/pthreads/mux_pthr.h index efdabfed4..79eed0c97 100644 --- a/src/utils/mutex/pthreads/mux_pthr.h +++ b/src/utils/mutex/pthreads/mux_pthr.h @@ -13,7 +13,7 @@ namespace Botan { /************************************************* * Pthread Mutex Factory * *************************************************/ -class Pthread_Mutex_Factory : public Mutex_Factory +class BOTAN_DLL Pthread_Mutex_Factory : public Mutex_Factory { public: Mutex* make(); diff --git a/src/utils/mutex/qt_mutex/mux_qt.h b/src/utils/mutex/qt_mutex/mux_qt.h index fffdc78ae..bf230e1ff 100644 --- a/src/utils/mutex/qt_mutex/mux_qt.h +++ b/src/utils/mutex/qt_mutex/mux_qt.h @@ -14,7 +14,7 @@ namespace Botan { /************************************************* * Qt Mutex * *************************************************/ -class Qt_Mutex_Factory : public Mutex_Factory +class BOTAN_DLL Qt_Mutex_Factory : public Mutex_Factory { public: Mutex* make(); diff --git a/src/utils/mutex/win32_crit_section/mux_win32.h b/src/utils/mutex/win32_crit_section/mux_win32.h index 20b245967..9073b0d3c 100644 --- a/src/utils/mutex/win32_crit_section/mux_win32.h +++ b/src/utils/mutex/win32_crit_section/mux_win32.h @@ -14,7 +14,7 @@ namespace Botan { /************************************************* * Win32 Mutex Factory * *************************************************/ -class Win32_Mutex_Factory : public Mutex_Factory +class BOTAN_DLL Win32_Mutex_Factory : public Mutex_Factory { public: Mutex* make(); 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; |