ftp.nice.ch/pub/next/games/card/NeXTmj.2.0.s.tar.gz#/NeXTmj/NumberTileArray.h

This is NumberTileArray.h in view mode; [Download] [Up]

/*
 * This object provides an array of Number Tile objects.
 *	Number Tiles are used to display the remianing
 *	number of tiles on the Game Board.
 *
 $Author$
 $Header$
 *
 $Log$
 */


#import	"mj.h"
#import	"NumberTile.h"


												// Number of digits from 0-9.
#define	NUMBER_OF_NUMBER_TILES	10


class NumberTileArray {
private:
	NumberTile*	number_tiles[ NUMBER_OF_NUMBER_TILES ];

public:
	NumberTileArray( void );
	~NumberTileArray( void );	

												// Index into the array to an
												//	element.
	NumberTile&	operator[]( int );
};

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.