panthema / 2009 / cryptote / cryptote-0.5.390 / libenctain / botan-1.6 / include / def_char.h (Download File)
/*************************************************
* Default Character Set Handling Header File     *
* (C) 1999-2007 The Botan Project                *
*************************************************/

#ifndef BOTAN_DEFAULT_CHARSET_H__
#define BOTAN_DEFAULT_CHARSET_H__

#include "botan-1.6/include/charset.h"

namespace Enctain {
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