#include "CifBuilder.h"
char ** CifBuilder::GetItemMethods(const char * itemName,
uWord & n);
#include "CifBuilder.h"
CifBuilder cb("mmCif96.psf");
cb.BuildDictionaryList();
cb.SetContext("cifdic.m96");
uWord numMethods = 0;
char ** methods = cb.GetItemMethods("_atom_site.cartn_x",
numMethods);
GetItemMethods returns an array containing the method IDs for the item itemName.
itemName | the name of the item |
n | a reference to a uWord to hold the number of methods |
Returns the methods IDs as a char ** or NULL. The number of methods will be passed back via the second argument.
None |