home *** CD-ROM | disk | FTP | other *** search
- /*
- * private.c - private functions for skeleton class.
- *
- * Public Domain.
- *
- * Christian E. Hopps.
- *
- * (this file could be broken into more if it was too big.)
- */
-
- #include <proto/utility.h>
- #include <skeleton_internal.h>
- #include <skeleton.h>
- #include <classglue.h>
-
- ULONG Skeleton_setattrs( Class *class, Object *obj, struct opSet *msg)
- {
- struct TagItem *taglist, *tag;
-
- taglist = msg->ops_AttrList;
-
- while(tag = NextTagItem(&taglist) ) {
-
- switch(tag->ti_Tag) {
- case SKA_NoOp:
- default:
- /*
- * this would be one (or many) of your defined tags
- * tag->ti_Data will be the data associated with the
- * tag.
- */
- break;
- }
- }
-
- return(1);
- }