summaryrefslogtreecommitdiff
path: root/include/SSystem/SComponent/c_tag_iter.h
blob: c9abb171f752d25a5e37f2b9ae1a4873a15e61e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef C_TAG_ITER_H
#define C_TAG_ITER_H

#include "SSystem/SComponent/c_node_iter.h"

typedef struct create_tag_class create_tag_class;

typedef struct method_filter {
    cNdIt_MethodFunc mpMethodFunc;
    void* mpUserData;
} method_filter;

typedef struct judge_filter {
    cNdIt_JudgeFunc mpJudgeFunc;
    void* mpUserData;
} judge_filter;

int cTgIt_MethodCall(create_tag_class* pTag, method_filter* pMethodFilter);
void* cTgIt_JudgeFilter(create_tag_class* pTag, judge_filter* pJudgeFilter);

#endif /* C_TAG_ITER_H */