oop_in_c/Figure.c

18 lines
264 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)
{
2012-05-02 19:55:53 +04:00
// nothing here
2012-05-02 18:25:52 +04:00
}
void Figure_destructor (Figure *this)
{
2012-05-02 19:55:53 +04:00
// nothing here
2012-05-02 18:25:52 +04:00
}
void Figure_copy (struct Figure *dest, const struct Figure *src)
{
2012-05-02 19:55:53 +04:00
// nothing here
2012-05-02 18:25:52 +04:00
}