#ifndef STRUCT_VALUE_INHERITANCE #define STRUCT_VALUE_INHERITANCE #include struct stringtree; struct value; struct color_factory; struct value_inheritance { struct stringtree* (*prettyprint)( int *out_chosen_color, struct value* this, bool with_color); void (*free)( struct value* this); }; #endif