blob: e3cbd169456cee497cec1277ac9734304284cc8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/**
* f_pc_method_iter.cpp
* Framework - Process Method Iteration
*/
#include "SSystem/SComponent/c_list_iter.h"
#include "f_pc/f_pc_method_iter.h"
int fpcMtdIt_Method(node_list_class* i_nodeList, fpcMtdIt_MethodFunc i_methods) {
return cLsIt_Method(i_nodeList, (cNdIt_MethodFunc)i_methods, NULL);
}
|