#ifndef INTUITION_CLASSUSR_H
#include <intuition/classusr.h>
#endif

#include <proto/alib.h>

#include "MyLib.h"

/****** MyLib.lib/DoSuperNew *********************************************
*
*    NAME
*	DoSuperNew -- DoSuperMethod() for OM_NEW
*
*    SYNOPSIS
*	NewObject=DoSuperNew(TheClass, TheObject, Tag1, ...)
*
*	Object *DoSuperNew(struct IClass *, Object *, ULONG, ...);
*
*    FUNCTION
*	Perfom an OM_NEW object on our superclass, passing it
*	the supplied tags.
*
*    RESULT
*	NewObject -- the result of DoSuperMethod(...OM_NEW...)
*
*    SEE ALSO
*	amiga.lib/DoSuperMethodA(),
*	OM_NEW documentation of the involved class
*
*************************************************************************/

Object *(DoSuperNew)(struct IClass *TheClass, Object *TheObject, ULONG Tag1, ...)

{
  return (Object *)DoSuperMethod(TheClass,TheObject,OM_NEW,&Tag1,NULL);
}
