Annotation of parser3/src/include/pa_globals.h, revision 1.110

1.13      paf         1: /** @file
1.15      paf         2:        Parser: global decls.
                      3: 
1.109     paf         4:        Copyright (c) 2001-2004 ArtLebedev Group (http://www.artlebedev.com)
1.78      paf         5:        Author: Alexandr Petrosian <paf@design.ru> (http://paf.design.ru)
1.1       paf         6: */
                      7: 
                      8: #ifndef PA_GLOBALS_H
                      9: #define PA_GLOBALS_H
1.90      paf        10: 
1.110   ! paf        11: static const char * const IDENT_GLOBALS_H="$Date: 2004/02/11 15:33:14 $";
1.1       paf        12: 
1.27      paf        13: 
1.104     paf        14: #include "pa_hash.h"
                     15: #include "pa_string.h"
1.105     paf        16: 
                     17: #ifdef XML
                     18: #      include "libxml/tree.h"
1.106     paf        19: #      include "gdome.h"
1.105     paf        20: #endif
1.104     paf        21: 
1.57      parser     22: class Dictionary;
1.71      paf        23: class Charset;
1.84      paf        24: class Table;
1.108     paf        25: class Request;
1.1       paf        26: 
1.110   ! paf        27: /// initialize global variables
1.104     paf        28: void pa_globals_init();
1.110   ! paf        29: 
        !            30: /// finalize global variables
        !            31: void pa_globals_done();
1.5       paf        32: 
1.14      paf        33: /// hex_value[c] = hex value of c
1.5       paf        34: extern short hex_value[0x100];
1.1       paf        35: 
1.75      paf        36: #ifdef XML
1.76      paf        37: /// DOMImplementation
                     38: extern GdomeDOMImplementation *domimpl;
                     39: 
1.75      paf        40: /// flag whether there were some xml generic errors on current thread
                     41: bool xmlHaveGenericErrors();
1.74      paf        42: /// get xml generic error accumulated for current thread. WARNING: it is up to caller to free up
1.104     paf        43: const char* xmlGenericErrors();
1.75      paf        44: #endif
1.108     paf        45: 
                     46: /// register request for local thread to retrive later with pa_get_request()
                     47: void pa_register_thread_request(Request&);
                     48: /// retrives request set by pa_set_request function, useful in contextless places [slow]
                     49: Request& pa_thread_request();
1.1       paf        50: 
                     51: #endif

E-mail: