#include "CifBuilder.h"
char ** CifBuilder::GetDictionaryMethodsId(uWord & n);
#include "CifBuilder.h"
CifBuilder cb("mmCif96.psf");
cb.BuildDictionaryList();
cb.SetContext("cifdic.m96");
uWord numMethods = 0;
char ** methods = cb.GetDictionaryMethodsId(numMethods);
GetDictionaryMethodsId returns an array of the method IDs for the current dictionary datablock (context).
n | a reference to a uWord to hold the number of methods |
Returns the method IDs as a char ** or NULL. The number of methods will be passed back via the argument.
None |