The unified diff between revisions [92f17752..] and [965528e6..] is displayed below. It can also be downloaded as a raw diff.

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

#
#
# patch "include/asn1_oid.h"
#  from [0ecf950a1c93059fdf9b86e1d5d11ae6702c5ee1]
#    to [6e4b868ccc447a35b13af5575146d38cc145e05f]
#
============================================================
--- include/asn1_oid.h	0ecf950a1c93059fdf9b86e1d5d11ae6702c5ee1
+++ include/asn1_oid.h	6e4b868ccc447a35b13af5575146d38cc145e05f
@@ -1,6 +1,6 @@
 /*************************************************
 * ASN.1 OID Header File                          *
-* (C) 1999-2006 The Botan Project                *
+* (C) 1999-2007 Jack Lloyd                       *
 *************************************************/

 #ifndef BOTAN_ASN1_OID_H__
@@ -15,7 +15,7 @@ namespace Botan {
 /*************************************************
 * ASN.1 Object Identifier                        *
 *************************************************/
-class OID : public ASN1_Object
+class BOTAN_DLL OID : public ASN1_Object
    {
    public:
       void encode_into(class DER_Encoder&) const;
@@ -37,13 +37,13 @@ class OID : public ASN1_Object
 /*************************************************
 * Append another component onto the OID          *
 *************************************************/
-OID operator+(const OID&, u32bit);
+OID BOTAN_DLL operator+(const OID&, u32bit);

 /*************************************************
 * Compare two OIDs                               *
 *************************************************/
-bool operator!=(const OID&, const OID&);
-bool operator<(const OID&, const OID&);
+bool BOTAN_DLL operator!=(const OID&, const OID&);
+bool BOTAN_DLL operator<(const OID&, const OID&);

 }