mirror of https://github.com/zeldaret/tp.git
13 lines
354 B
C
13 lines
354 B
C
|
|
#ifndef SCOMPONENT_C_TREE_ITER_H_
|
|
#define SCOMPONENT_C_TREE_ITER_H_
|
|
|
|
#include "SComponent/c_node_iter.h"
|
|
#include "SComponent/c_tree.h"
|
|
#include "global.h"
|
|
|
|
int cTrIt_Method(node_lists_tree_class* pTree, cNdIt_MethodFunc pJudgeFunc, void* pUserData);
|
|
void* cTrIt_Judge(node_lists_tree_class* pTree, cNdIt_JudgeFunc pJudgeFunc, void* pUserData);
|
|
|
|
#endif
|