diff options
author | lloyd <[email protected]> | 2006-06-19 09:18:22 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2006-06-19 09:18:22 +0000 |
commit | 6413b5d29a781a231d2f331e4191b68fb88a27d9 (patch) | |
tree | 507ebe91b21a573ab05b348c92c886b6347b0e2a /include | |
parent | 4bbacf4aae4b8b98d02ea887593492c1b9dacdc7 (diff) |
Add default character set conversion classes
Diffstat (limited to 'include')
-rw-r--r-- | include/def_char.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/include/def_char.h b/include/def_char.h new file mode 100644 index 000000000..c4abfb36b --- /dev/null +++ b/include/def_char.h @@ -0,0 +1,25 @@ +/************************************************* +* Default Character Set Handling Header File * +* (C) 1999-2006 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 |