![]() |
![]() An Information Portal to Biological Macromolecular Structures |
|
PDB Home |
Contact Us ![]() |
![]() |
Software Tools Home | Dictionary Home | PDBML Home |
![]() |
#include "ISTable.h"
ReVarCifArray<CifString> * ISTable::GetRow(int rowIndex);
#include "ISTable.h"
extern void processRow(ReVarCifArray<CifString> *);
ISTable * pTable = new ISTable();
ReVarCifArray<CifString> * row;
... // fill up table
for (int i = 0; i < pTable->GetNumRows(); i++) {
row = pTable->GetRow(i);
if (row) {
processRow(row);
pTable->FillRow(*row, i);
}
}
GetRow returns the data of a row as an array of strings.
rowIndex | The index of the row to be retrieved. |
A pointer to a ReVarCifArray<CifString> that contains the data of the specified row.
A NULL value will be returned if an error occurs.
See also: | GetSubRow |
---|