#include "CifBuilder.h"
char * CifBuilder::GetCategoryDescription(const char * categoryId);
#include "CifBuilder.h"
CifBuilder cb("mmCif96.psf");
cb.BuildDictionaryList();
cb.SetContext("cifdic.m96");
char * description = cb.GetCategoryDescription("atom_site");
GetCategoryDescription returns the description of a category in the current context.
categoryId | the name of the category |
Returns the description of the category as a char *.
None |