diff options
author | 2024-02-24 16:04:00 +0600 | |
---|---|---|
committer | 2024-02-24 16:04:00 +0600 | |
commit | 6277feb3be69788eac9e40a52c3a1c10f6d1311f (patch) | |
tree | 64afe50c819ea74b6b87c27afe4ac5fc4688d5e1 /src/teams.h | |
parent | 7455c3d0bda6ab60d3f67fafd0ce04428143bcbe (diff) | |
download | c-obp-example-6277feb3be69788eac9e40a52c3a1c10f6d1311f.tar.gz c-obp-example-6277feb3be69788eac9e40a52c3a1c10f6d1311f.zip |
Use CLASS construct to define class
Signed-off-by: Mubashshir <ahmubashshir@gmail.com>
Diffstat (limited to '')
-rw-r--r-- | src/teams.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/teams.h b/src/teams.h index 2fc1be3..15aad82 100644 --- a/src/teams.h +++ b/src/teams.h @@ -6,7 +6,7 @@ # include "common.h" // Type definition -typedef struct team_impl_struct * team; +CLASS(team); // base functions NEW(team); |