示例#1
0
文件: DocReader.c 项目: kidaa/lucy
PolyDocReader*
PolyDocReader_new(Vector *readers, I32Array *offsets) {
    PolyDocReader *self = (PolyDocReader*)Class_Make_Obj(POLYDOCREADER);
    return PolyDocReader_init(self, readers, offsets);
}
示例#2
0
PolyDocReader*
PolyDocReader_new(VArray *readers, I32Array *offsets)
{
    PolyDocReader *self = (PolyDocReader*)VTable_Make_Obj(&POLYDOCREADER);
    return PolyDocReader_init(self, readers, offsets);
}