Annotation of parser3/src/include/pa_charsets.h, revision 1.3
1.1 paf 1: /** @file
2: Parser: sql driver manager decl.
3:
4: Copyright (c) 2001 ArtLebedev Group (http://www.artlebedev.com)
5: Author: Alexander Petrosyan <paf@design.ru> (http://paf.design.ru)
6:
1.3 ! paf 7: $Id: pa_charsets.h,v 1.2 2001/12/17 18:44:51 paf Exp $
1.1 paf 8:
9:
10: global sql driver manager, must be thread-safe
11: */
12:
13: #ifndef PA_CHARSETS_H
14: #define PA_CHARSETS_H
15:
16: #include "pa_hash.h"
17:
18: class Charsets : public Hash {
19: public:
20: Charsets(Pool& apool);
21: ~Charsets();
1.2 paf 22:
23: Charset& get_charset(const String& name);
1.3 ! paf 24: void load_charset(const String& request_name, const String& request_file_spec);
1.1 paf 25: };
26:
27: /// global
28: extern Charsets *charsets;
29:
30:
31: #endif
E-mail: