#include "CifBuilder.h"
char ** CifBuilder::GetSubcategoryExamplesCase(const char *
subcategoryId,
uWord & n);
#include "CifBuilder.h"
CifBuilder cb("mmCif96.psf");
cb.BuildDictionaryList();
cb.SetContext("cifdic.m96");
uWord numExamples = 0;
char ** examples = cb.GetSubcategoryExamplesCase("matrix",
numExamples);
GetSubcategoryExamplesCase returns an array of examples for the subcategory subcategoryId.
subcategoryId | the name of the subcategory |
n | a reference to a uWord to hold the number of examples |
Returns the examples as a char ** or NULL. The number of examples will be passed back via the second argument.
See also: | GetSubcategoryExamplesDetail |
---|