home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / Apps / DevTools / COWS / Code / COWSNode.h < prev    next >
Encoding:
Text File  |  1994-03-05  |  227 b   |  29 lines

  1. /*
  2.     Copyright (C) 1994 Sean Luke
  3.  
  4.     COWSNode.m
  5.     Version 1.0
  6.     Sean Luke
  7.     
  8. */
  9.  
  10.  
  11.  
  12.  
  13. #import <objc/Object.h>
  14.  
  15.  
  16. @interface COWSNode:Object
  17. {
  18.     id    next;
  19.     id    prev;
  20. }
  21.  
  22. - init;
  23. - setNext:this;
  24. - next;
  25. - setPrev:this;
  26. - prev;
  27. - free;
  28.     
  29. @end