home *** CD-ROM | disk | FTP | other *** search
- // SmallCell.m
- // By Charles G. Fleming, Educational Computing Services, Allegheny College.
- // Copyright 1992 Allegheny College
- // You may freely copy, distribute and reuse this code.
- // Allegheny College and the author disclaim any warranty of any kind,
- // expressed or implied, as to its fitness for any particular use.
- // This work was partially supported by a grant from the Vira Heinz Endowment.
-
- #import "SmallCell.h"
-
- @implementation SmallCell
-
- - calcCellSize:(NXSize *)theSize inRect:(const NXRect *)aRect
- {
- theSize->width = 0.0;
- theSize->height = 0.0;
- return self;
- }
- @end
-