aboutsummaryrefslogtreecommitdiffstats
path: root/include/def_char.h
blob: 407cedfb085d7db0eaf972dc434d53fb51f5c42b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*************************************************
* 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