blob: 82bcfb1f296f5a2729db915a454e016fb13dc113 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* Cat class public interface */
#ifndef CAT_P_H
#define CAT_P_H
struct cat;
/* Allocator */
struct cat *cat_new(void);
/* Constructor */
void cat_ctor(struct cat *);
/* Destructor */
void cat_dtor(struct cat *);
/* Behavior functions inherited from Animal class */
#endif /* CAT_P_H */
|