#include "CifBuilder.h"
char * CifBuilder::GetItemType(const char * itemName);
#include "CifBuilder.h"
CifBuilder cb("mmCif96.psf");
cb.BuildDictionaryList();
cb.SetContext("cifdic.m96");
char * type = cb.GetItemType("_atom_site.cartn_x");
GetItemType returns the type for the item itemName in the current context
itemName | the name of the item |
Returns the type as a char * or NULL.
None |