www.pudn.com > ANSI_C_OOP.rar > value.h


#ifndef	VALUE_H
#define	VALUE_H

/*
 *	node types
 */

const void * Minus;
const void * Value;
const void * Mult;
const void * Div;
const void * Add;
const void * Sub;

/*
 *	tree management
 */

void * new (const void * type, ...);
void process (const void * tree);
void delete (void * tree);

#endif