The unified diff between revisions [92f17752..] and [11a5f681..] 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 [1c2652eaa8d52203589e94003df6b89172530b1b]
# to [efa2ea51c6eee5fd064a1f0b88084009313ce9e5]
#
============================================================
--- include/basefilt.h 1c2652eaa8d52203589e94003df6b89172530b1b
+++ include/basefilt.h efa2ea51c6eee5fd064a1f0b88084009313ce9e5
@@ -1,6 +1,6 @@
/*************************************************
* Basic Filters Header File *
-* (C) 1999-2006 The Botan Project *
+* (C) 1999-2007 Jack Lloyd *
*************************************************/
#ifndef BOTAN_BASEFILT_H__
@@ -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&);