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

1.1       paf         1: /*
1.2     ! paf         2:   $Id: pa_request.h,v 1.1 2001/01/29 20:46:22 paf Exp $
1.1       paf         3: */
                      4: 
                      5: #ifndef PA_REQUEST_H
                      6: #define PA_REQUEST_H
                      7: 
                      8: #include "pa_pool.h"
                      9: #include "pa_error.h"
                     10: 
                     11: class Request {
                     12: public:
                     13:        
                     14:        // all request' objects are allocated in this pool
                     15:        // they die with request
                     16:        Pool pool;
                     17:        
                     18:        // these errors handled on global(request) level
1.2     ! paf        19:        Error request_error;
1.1       paf        20: 
                     21:        // these errors handled on local(operator) level
1.2     ! paf        22:        Error operator_error;
1.1       paf        23: 
                     24:        Request() {}
                     25:        ~Request() {}
                     26: };
                     27: 
                     28: #endif

E-mail: