--- parser3/src/include/pa_charsets.h 2003/01/31 12:34:29 1.8.2.7 +++ parser3/src/include/pa_charsets.h 2012/03/16 09:24:09 1.15 @@ -1,7 +1,7 @@ /** @file Parser: sql driver manager decl. - Copyright (c) 2001-2003 ArtLebedev Group (http://www.artlebedev.com) + Copyright (c) 2001-2012 Art. Lebedev Studio (http://www.artlebedev.com) Author: Alexandr Petrosian (http://paf.design.ru) @@ -11,24 +11,25 @@ #ifndef PA_CHARSETS_H #define PA_CHARSETS_H -static const char* IDENT_CHARSETS_H="$Date: 2003/01/31 12:34:29 $"; +#define IDENT_PA_CHARSETS_H "$Id: pa_charsets.h,v 1.15 2012/03/16 09:24:09 moko Exp $" #include "pa_hash.h" #include "pa_charset.h" -class Charsets: public Hash { - Pool charsets_pool; +/// convention: use UPPERCASE keys +class Charsets: public HashString { public: Charsets(); - Charset& get(StringPtr aname); + Charset& get(const String::Body ANAME); - void load_charset(StringPtr arequest_name, StringPtr arequest_file_spec); + void load_charset(Request_charsets& charsets, const String::Body ANAME, const String& afile_spec); }; -/// global +//@{ globals +extern Charset UTF8_charset; extern Charsets charsets; - +//@} #endif