#include "CifBuilder.h"
char ** CifBuilder::GetDictionaryItemStructureListDimension(uWord & n);
#include "CifBuilder.h"
CifBuilder cb("mmCif96.psf");
cb.BuildDictionaryList();
cb.SetContext("cifdic.m96");
uWord numD = 0;
char ** itemStructListDim =
cb.GetDictionaryItemStructureListDimension(numD);
GetDictionaryItemStructureListDimension returns the lengths of the item structure rows/columns in the current dictionary datablock (context).
n | a reference to a uWord to hold the number of item structures |
Returns the list of lengths as a char ** or NULL. The number of item structures will be passed back via the argument.
See also: | GetDictionaryItemStructureList |
---|---|
GetDictionaryItemStructureListIndex |