The unified diff between revisions [5ac60dc5..] and [b3f30c54..] is displayed below. It can also be downloaded as a raw diff.

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

#
#
# patch "include/charset.h"
#  from [5aef46caf0040c02fc7e648b02ab9e5f21a66640]
#    to [d14be390cbcd1b0b0a33005c0c6b2165c66fd8b1]
#
============================================================
--- include/charset.h	5aef46caf0040c02fc7e648b02ab9e5f21a66640
+++ include/charset.h	d14be390cbcd1b0b0a33005c0c6b2165c66fd8b1
@@ -1,6 +1,6 @@
 /*************************************************
 * Character Set Handling Header File             *
-* (C) 1999-2007 The Botan Project                *
+* (C) 1999-2007 Jack Lloyd                       *
 *************************************************/

 #ifndef BOTAN_CHARSET_H__
@@ -12,18 +12,6 @@ namespace Botan {

 namespace Botan {

-/*************************************************
-* Character Set Transcoder Interface             *
-*************************************************/
-class Charset_Transcoder
-   {
-   public:
-      virtual std::string transcode(const std::string&,
-                                    Character_Set, Character_Set) const = 0;
-
-      virtual ~Charset_Transcoder() {}
-   };
-
 namespace Charset {

 /*************************************************