From d98f46ce647846b0aa30b2e16a30fd4e152a1bf5 Mon Sep 17 00:00:00 2001 From: Carlos Maiolino Date: Thu, 10 Jul 2025 22:55:07 +0200 Subject: Add new code Signed-off-by: Carlos Maiolino --- C/OOP/include/cat_p.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 C/OOP/include/cat_p.h (limited to 'C/OOP/include/cat_p.h') diff --git a/C/OOP/include/cat_p.h b/C/OOP/include/cat_p.h new file mode 100644 index 0000000..82bcfb1 --- /dev/null +++ b/C/OOP/include/cat_p.h @@ -0,0 +1,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 */ -- cgit v1.2.3