#include "CifBuilder.h"
char ** CifBuilder::GetDictionaryCategoryGroupListParents(uWord & n);
#include "CifBuilder.h"
CifBuilder cb("mmCif96.psf");
cb.BuildDictionaryList();
cb.SetContext("cifdic.m96");
uWord numGroups = 0;
char ** CategoryGroupListParents =
cb.GetDictionaryCategoryGroupListParents(numGroups);
GetDictionaryCategoryGroupListParents returns an array of char *, which is a list of the (optional) parents 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 group parent names as a char ** or NULL. The number of groups will be passed back via the argument.
See also: | GetDictionaryCategoryGroupList |
---|---|
GetDictionaryCategoryGroupListDescription |