oop_in_c/Figure.c

27 lines
365 B
C
Raw Permalink 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
// warnings stub
this = this;
2012-05-02 18:25:52 +04:00
}
void Figure_destructor (Figure *this)
{
2012-05-02 19:55:53 +04:00
// nothing here
// warnings stub
this = this;
2012-05-02 18:25:52 +04:00
}
void Figure_copy (Figure *dest, const Figure *src)
2012-05-02 18:25:52 +04:00
{
2012-05-02 19:55:53 +04:00
// nothing here
// warnings stub
dest = (Figure *) src;
2012-05-02 18:25:52 +04:00
}