#include "CifBuilder.h"
char ** CifBuilder::GetSubcategoryMethods(const char *
subcategoryId,
uWord & n);
#include "CifBuilder.h"
CifBuilder cb("mmCif96.psf");
cb.BuildDictionaryList();
cb.SetContext("cifdic.m96");
uWord numMethods = 0;
char ** methods = cb.GetSubcategoryMethods("matrix", numMethods);
GetSubcategoryMethods returns an array of subcategory method IDs that are associated with the subcategory subcategoryId.
subcategoryId | the name of the subcategory |
n | a reference to a uWord to hold the number of subcategory methods |
Returns the subcategory method IDs as a char ** or NULL. The number of methods will be passed back via the second argument.
None |