File:  [parser3project] / parser3 / src / include / pa_request.h
Revision 1.1: download - view: text, annotated - select for diffs - revision graph
Mon Jan 29 20:46:22 2001 UTC (25 years, 5 months ago) by paf
Branches: MAIN
CVS tags: HEAD
added forgotten

/*
  $Id: pa_request.h,v 1.1 2001/01/29 20:46:22 paf Exp $
*/

#ifndef PA_REQUEST_H
#define PA_REQUEST_H

#include "pa_pool.h"
#include "pa_error.h"

class Request {
public:
	
	// all request' objects are allocated in this pool
	// they die with request
	Pool pool;
	
	// these errors handled on global(request) level
	Error fatal_error;

	// these errors handled on local(operator) level
	Error error;

	Request() {}
	~Request() {}
};

#endif

E-mail: