/*************************************************
* Default Character Set Handling Header File     *
* (C) 1999-2007 The Botan Project                *
*************************************************/

#ifndef BOTAN_DEFAULT_CHARSET_H__
#define BOTAN_DEFAULT_CHARSET_H__

#include <botan/charset.h>

namespace Botan {

/*************************************************
* Default Character Set Transcoder Object        *
*************************************************/
class Default_Charset_Transcoder : public Charset_Transcoder
   {
   public:
      std::string transcode(const std::string&,
                            Character_Set, Character_Set) const;
   };

}

#endif


syntax highlighted by Code2HTML, v. 0.9.1