/** @file
Parser: sql driver manager decl.
Copyright (c) 2001, 2003 ArtLebedev Group (http://www.artlebedev.com)
Author: Alexandr Petrosian <paf@design.ru> (http://paf.design.ru)
global sql driver manager, must be thread-safe
*/
#ifndef PA_CHARSETS_H
#define PA_CHARSETS_H
static const char* IDENT_CHARSETS_H="$Date: 2003/01/31 12:10:44 $";
#include "pa_hash.h"
#include "pa_charset.h"
class Charsets: public Hash<StringPtr, CharsetPtr> {
Pool charsets_pool;
public:
Charsets();
Charset& get(StringPtr aname);
void load_charset(StringPtr arequest_name, StringPtr arequest_file_spec);
};
/// global
extern Charsets charsets;
#endif
E-mail: