#include "CifBuilder.h"
char ** CifBuilder::GetDictionaryCategoryGroupList(uWord & n);
#include "CifBuilder.h"
CifBuilder cb("mmCif96.psf");
cb.BuildDictionaryList();
cb.SetContext("cifdic.m96");
uWord numGroups = 0;
char ** CategoryGroupList =
cb.GetDictionaryCategoryGroupList(numGroups);
GetDictionaryCategoryGroupList returns an array of char *, which is a list of the category groups in the current dictionary datablock (context).
n | a reference to a uWord to hold the number of category groups |
Returns the list of category groups as a char ** or NULL. The number of groups will be passed back via the argument.
See also: | GetDictionaryCategoryGroupListParents |
---|---|
GetDictionaryCategoryGroupListDescription |