lambda-calc-1/value/inheritance.h

22 lines
360 B
C

#ifndef STRUCT_VALUE_INHERITANCE
#define STRUCT_VALUE_INHERITANCE
#include <stdbool.h>
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