#ifndef _CELL_H #define _CELL_H class Cell { public: //constructor Cell(); int status; //status is 0 if dead; 1 if alive int on; //the number of the surrounding cells that are alive }; #endif