17 lines
439 B
C
17 lines
439 B
C
|
|
#include "../inheritance.h"
|
|
|
|
#include "inheritance.h"
|
|
#include "shallow_free.h"
|
|
#include "prettyprint.h"
|
|
#include "foreach_accessible_subvalue.h"
|
|
#include "compare.h"
|
|
|
|
struct value_inheritance integer_value_inheritance =
|
|
{
|
|
.prettyprint = integer_value_prettyprint,
|
|
.foreach_accessible_subvalue = integer_value_foreach_accessible_subvalue,
|
|
.shallow_free = shallow_free_integer_value,
|
|
.compare = compare_integer_values,
|
|
};
|
|
|