--- parser3/src/include/pa_charsets.h 2001/12/17 18:44:51 1.2 +++ parser3/src/include/pa_charsets.h 2004/02/11 15:33:13 1.12 @@ -1,10 +1,8 @@ /** @file Parser: sql driver manager decl. - Copyright (c) 2001 ArtLebedev Group (http://www.artlebedev.com) - Author: Alexander Petrosyan (http://paf.design.ru) - - $Id: pa_charsets.h,v 1.2 2001/12/17 18:44:51 paf Exp $ + Copyright (c) 2001-2004 ArtLebedev Group (http://www.artlebedev.com) + Author: Alexandr Petrosian (http://paf.design.ru) global sql driver manager, must be thread-safe @@ -13,18 +11,25 @@ #ifndef PA_CHARSETS_H #define PA_CHARSETS_H +static const char * const IDENT_CHARSETS_H="$Date: 2004/02/11 15:33:13 $"; + #include "pa_hash.h" +#include "pa_charset.h" -class Charsets : public Hash { +/// convention: use UPPERCASE keys +class Charsets: public Hash { public: - Charsets(Pool& apool); - ~Charsets(); - Charset& get_charset(const String& name); -}; + Charsets(); -/// global -extern Charsets *charsets; + Charset& get(const String::Body ANAME); + + void load_charset(Request_charsets& charsets, const String::Body ANAME, const String& afile_spec); +}; +//@{ globals +extern Charset UTF8_charset; +extern Charsets charsets; +//@} #endif