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