Skip to content

Commit cc36d13

Browse files
committed
aquarium: Boilerplate for AquariumBuilder class implementation
1 parent 0800ca1 commit cc36d13

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/class/aquarium.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ static int add_kernel(state_t* state, flamingo_arg_list_t* args, flamingo_val_t*
3333
static int prep_image(state_t* state, flamingo_arg_list_t* args, flamingo_val_t** rv) {
3434
assert(args->count == 0);
3535

36-
// TODO
36+
// TODO Imaging build step.
3737

3838
return 0;
3939
}

src/class/class.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,15 @@ typedef struct {
1515
} bob_class_t;
1616

1717
extern bob_class_t BOB_CLASS_AQUARIUM;
18+
extern bob_class_t BOB_CLASS_AQUARIUM_BUILDER;
1819
extern bob_class_t BOB_CLASS_CC;
1920
extern bob_class_t BOB_CLASS_FS;
2021
extern bob_class_t BOB_CLASS_LINKER;
2122
extern bob_class_t BOB_CLASS_PLATFORM;
2223

2324
static bob_class_t* const BOB_CLASSES[] = {
2425
&BOB_CLASS_AQUARIUM,
26+
&BOB_CLASS_AQUARIUM_BUILDER,
2527
&BOB_CLASS_CC,
2628
&BOB_CLASS_FS,
2729
&BOB_CLASS_LINKER,

0 commit comments

Comments
 (0)