void
PyAMRStitchCellAttributes_StartUp(AMRStitchCellAttributes *subj, void *data)
{
    if(subj == 0)
        return;

    currentAtts = subj;
    PyAMRStitchCellAttributes_SetDefaults(subj);

    //
    // Create the observer that will be notified when the attributes change.
    //
    if(AMRStitchCellAttributesObserver == 0)
    {
        AMRStitchCellAttributesObserver = new ObserverToCallback(subj,
            PyAMRStitchCellAttributes_CallLogRoutine, (void *)data);
    }

}
void
AMRStitchCellScriptingPluginInfo::SetDefaults(const AttributeSubject *atts)
{
    PyAMRStitchCellAttributes_SetDefaults((const AMRStitchCellAttributes *)atts);
}