Exemplo n.º 1
0
Arquivo: ORQuery.c Projeto: kidaa/lucy
ORQuery*
ORQuery_new(Vector *children) {
    ORQuery *self = (ORQuery*)Class_Make_Obj(ORQUERY);
    return ORQuery_init(self, children);
}
Exemplo n.º 2
0
ORQuery*
ORQuery_new(VArray *children) {
    ORQuery *self = (ORQuery*)VTable_Make_Obj(ORQUERY);
    return ORQuery_init(self, children);
}