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

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.2     ! paf         7:        $Id: pa_charsets.h,v 1.1 2001/12/15 21:51:43 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.1       paf        24: };
                     25: 
                     26: /// global
                     27: extern Charsets *charsets;
                     28: 
                     29: 
                     30: #endif

E-mail: