home *** CD-ROM | disk | FTP | other *** search
/ Education Sampler 1992 [NeXTSTEP] / Education_1992_Sampler.iso / Programming / Classes / 2.0_HotShape / beta / SmallCell.m < prev   
Encoding:
Text File  |  1992-07-23  |  601 b   |  22 lines

  1. // SmallCell.m
  2. // By Charles G. Fleming, Educational Computing Services, Allegheny College.
  3. // Copyright 1992 Allegheny College
  4. // You may freely copy, distribute and reuse this code. 
  5. // Allegheny College and the author disclaim any warranty of any kind, 
  6. // expressed or implied, as to its fitness for any particular use.
  7. // This work was partially supported by a grant from the Vira Heinz Endowment.
  8.  
  9. #import "SmallCell.h"
  10.  
  11. #import <stdio.h>
  12.  
  13. @implementation SmallCell
  14.  
  15. - calcCellSize:(NXSize *)theSize inRect:(NXRect *)aRect
  16. {
  17.     theSize->width = 0.0;
  18.     theSize->height = 0.0;
  19.     return self;
  20. }        
  21. @end
  22.