The unified diff between revisions [229d3942..] and [51f9ee51..] is displayed below. It can also be downloaded as a raw diff.
This diff has been restricted to the following files: 'include/basefilt.h'
#
#
# patch "include/basefilt.h"
# from [3c60162d57d6362585bd2a0a6ba609c69848ee3b]
# to [efa2ea51c6eee5fd064a1f0b88084009313ce9e5]
#
============================================================
--- include/basefilt.h 3c60162d57d6362585bd2a0a6ba609c69848ee3b
+++ include/basefilt.h efa2ea51c6eee5fd064a1f0b88084009313ce9e5
@@ -13,7 +13,7 @@ namespace Botan {
/*************************************************
* Chain *
*************************************************/
-class Chain : public Fanout_Filter
+class BOTAN_DLL Chain : public Fanout_Filter
{
public:
void write(const byte input[], u32bit length) { send(input, length); }
@@ -25,7 +25,7 @@ class Chain : public Fanout_Filter
/*************************************************
* Fork *
*************************************************/
-class Fork : public Fanout_Filter
+class BOTAN_DLL Fork : public Fanout_Filter
{
public:
void write(const byte input[], u32bit length) { send(input, length); }
@@ -38,7 +38,7 @@ class Fork : public Fanout_Filter
/*************************************************
* Keyed Filter *
*************************************************/
-class Keyed_Filter : public Filter
+class BOTAN_DLL Keyed_Filter : public Filter
{
public:
virtual void set_key(const SymmetricKey&);