oop_in_c/Figure.c

18 lines
264 B
C

#include "Figure.h"
/* considered to be protected */
void Figure_constructor (Figure *this)
{
// nothing here
}
void Figure_destructor (Figure *this)
{
// nothing here
}
void Figure_copy (struct Figure *dest, const struct Figure *src)
{
// nothing here
}