oop_in_c/Figure.c

18 lines
261 B
C
Raw Normal View History

2012-05-02 18:25:52 +04:00
#include "Figure.h"
/* considered to be protected */
void Figure_constructor (Figure *this)
{
// nothin here
}
void Figure_destructor (Figure *this)
{
// nothin here
}
void Figure_copy (struct Figure *dest, const struct Figure *src)
{
// nothin here
}