Annotation of parser3/src/include/pa_charsets.h, revision 1.7

1.1       paf         1: /** @file
                      2:        Parser: sql driver manager decl.
                      3: 
1.4       paf         4:        Copyright (c) 2001, 2002 ArtLebedev Group (http://www.artlebedev.com)
1.5       paf         5:        Author: Alexandr Petrosian <paf@design.ru> (http://paf.design.ru)
1.1       paf         6: 
                      7: 
                      8:        global sql driver manager, must be thread-safe
                      9: */
                     10: 
                     11: #ifndef PA_CHARSETS_H
                     12: #define PA_CHARSETS_H
1.6       paf        13: 
1.7     ! paf        14: static const char* IDENT_CHARSETS_H="$Date: pa_charsets.h,v 1.6 2002/08/01 11:26:46 paf Exp $";
1.1       paf        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: