Suppose that I create a Named Group in memory but never commit it to file. Are there any adverse consequences of making a transient Named Group?
That is, I do this...
NamedGroupPtr pGroup; // Probably a global variable
NamedGroup::Create (pGroup, L"MyGroup", L"Non-Persistent Named Group", NamedGroupFlags (), mdlModelRef_getActive ());
But I don't do this...
pGroup->WriteToFile (false);