#include "CifBuilder.h"
char ** CifBuilder::GetItemRelated(const char * itemName,
uWord & n);
#include "CifBuilder.h"
CifBuilder cb("mmCif96.psf");
cb.BuildDictionaryList();
cb.SetContext("cifdic.m96");
uWord numRelated = 0;
char ** related = cb.GetItemRelated("_atom_site.cartn_x",
numRelated);
GetItemRelated returns an array containing the names of the related items for the item itemName.
itemName | the name of the item |
n | a reference to a uWord to hold the number of related items |
Returns the related item names as a char ** or NULL. The number of related items will be passed back via the second argument.
See also: | GetItemRelatedFunctionCode |
---|