Annotation of parser3/src/include/pa_types.h, revision 1.3

1.2       paf         1: /*
1.3     ! paf         2:   $Id: pa_types.h,v 1.2 2001/01/29 15:56:04 paf Exp $
1.2       paf         3: */
                      4: 
1.1       paf         5: #ifndef PA_TYPES_H
                      6: #define PA_TYPES_H
                      7: 
1.2       paf         8: #ifdef HAVE_CONFIG_H
                      9: #include "pa_config.h"
                     10: #endif
                     11: 
1.3     ! paf        12: #define MAX_STRING 2*0x400
1.2       paf        13: 
1.1       paf        14: #undef uint
                     15: typedef unsigned int uint;
1.2       paf        16: 
                     17: class Origin {
                     18: public:
                     19: #ifndef NO_STRING_ORIGIN
                     20:        char *file;  // macros file name | load file name | sql query text
                     21:        uint line; // file line no | record no
                     22: #endif
                     23: };
1.1       paf        24: 
                     25: #endif

E-mail: