File:  [parser3project] / parser3 / src / main / pa_pool.C
Revision 1.3: download - view: text, annotated - select for diffs - revision graph
Fri Jan 26 18:34:02 2001 UTC (25 years, 5 months ago) by paf
Branches: MAIN
CVS tags: HEAD
templates in VC++ suxx.

/*
  $Id: pa_pool.C,v 1.3 2001/01/26 18:34:02 paf Exp $
*/

#include <stdlib.h>

#include "pa_pool.h"

Pool::Pool() {
}

Pool::~Pool() {
}

void *Pool::malloc(size_t size) {
	return ::malloc(size);
}

void *Pool::calloc(size_t size) {
	return ::calloc(size, 1);
}

E-mail: