add object module from corelib
This commit is contained in:
14
object/tree.h
Normal file
14
object/tree.h
Normal 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
|
||||
Reference in New Issue
Block a user