Cleaning up IoMessage_opShuffle.c: tabbing
[io/quag.git] / addons / User / source / IoUser.h
blob0b0118b749c9794796a25ee0076df878580f7f87
1 /*
2 docCopyright("Steve Dekorte", 2002)
3 docLicense("BSD revised")
4 */
6 #ifndef IOUSER_DEFINED
7 #define IOUSER_DEFINED 1
9 #include "IoObject.h"
10 #include "IoSeq.h"
12 #define ISUSER(self) IoObject_hasCloneFunc_(self, (IoTagCloneFunc *)IoUser_rawClone)
14 typedef IoObject IoUser;
16 IoUser *IoUser_rawClone(IoUser *self);
17 IoUser *IoUser_proto(void *state);
18 IoUser *IoUser_new(void *state);
20 /* ----------------------------------------------------------- */
21 IoObject *IoUser_protoName(IoUser *self, IoObject *locals, IoMessage *m);
22 IoObject *IoUser_homeDirectory(IoUser *self, IoObject *locals, IoMessage *m);
24 #endif