#include "CifBuilder.h"
char ** CifBuilder::GetCategoryExamplesCase(const char * categoryId,
uWord & n);
#include "CifBuilder.h"
CifBuilder cb("mmCif96.psf");
cb.BuildDictionaryList();
cb.SetContext("cifdic.m96");
uWord numExamples = 0;
char ** examples = cb.GetCategoryExamplesCase("atom_site",
numExamples);
GetCategoryExamplesCase returns an array of examples for the category categoryId.
categoryId | the name of the category |
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: | GetCategoryExamplesDetail |
---|