add object module from corelib

This commit is contained in:
2024-10-24 19:24:54 +01:00
parent 7eb0fc5581
commit fa6ebe6a84
38 changed files with 5606 additions and 24 deletions

14
object/tree.h Normal file
View File

@@ -0,0 +1,14 @@
#ifndef _B_TREE_H_
#define _B_TREE_H_
#include "../object.h"
#include <blue/core/queue.h>
#include <blue/object/tree.h>
struct b_tree {
struct b_object t_base;
struct b_tree_node *t_root;
};
#endif