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

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

#
#
# patch "include/config.h"
#  from [c9062f47545ae553683a0f9575b782fb19e6322f]
#    to [415aa5ec7bc05947012bc81e7da21ebca7849356]
#
============================================================
--- include/config.h	c9062f47545ae553683a0f9575b782fb19e6322f
+++ include/config.h	415aa5ec7bc05947012bc81e7da21ebca7849356
@@ -1,15 +1,13 @@
 /*************************************************
 * Configuration Handling Header File             *
-* (C) 1999-2007 Jack Lloyd                       *
+* (C) 1999-2008 Jack Lloyd                       *
 *************************************************/

 #ifndef BOTAN_POLICY_CONF_H__
 #define BOTAN_POLICY_CONF_H__

 #include <botan/mutex.h>
-#include <botan/enums.h>
 #include <string>
-#include <vector>
 #include <map>

 namespace Botan {
@@ -17,7 +15,7 @@ namespace Botan {
 /*************************************************
 * Library Configuration Settings                 *
 *************************************************/
-class Config
+class BOTAN_DLL Config
    {
    public:
       Config();
@@ -31,18 +29,11 @@ class Config
                const std::string&, bool = true);

       std::string option(const std::string&) const;
-      u32bit option_as_u32bit(const std::string&) const;
-      u32bit option_as_time(const std::string&) const;

       void set_option(const std::string, const std::string&);

       void add_alias(const std::string&, const std::string&);
       std::string deref_alias(const std::string&) const;
-
-      void load_inifile(const std::string&);
-
-      static void choose_sig_format(const std::string&, std::string&,
-                                    Signature_Format&);
    private:
       Config(const Config&) {}
       Config& operator=(const Config&) { return (*this); }
@@ -54,7 +45,7 @@ class Config
 /*************************************************
 * Hook for the global config                     *
 *************************************************/
-Config& global_config();
+BOTAN_DLL Config& global_config();

 }