oop_in_c/Figure.c

27 lines
365 B
C

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