www.pudn.com > ANSI_C_OOP.rar > value.h, change:2002-01-05,size:302b
#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