Annotation of parser3/src/include/pa_request.h, revision 1.1
1.1 ! paf 1: /*
! 2: $Id: pa_pool.h,v 1.14 2001/01/29 17:01:51 paf Exp $
! 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
! 19: Error fatal_error;
! 20:
! 21: // these errors handled on local(operator) level
! 22: Error error;
! 23:
! 24: Request() {}
! 25: ~Request() {}
! 26: };
! 27:
! 28: #endif
E-mail: