#ifndef Cell_h #define Cell_h class Cell { private: int numProc; int numFile; int ttl; //Time To Live char type; float date; Cell* suiv, *prec; public: Cell(); Cell(int, char, float, int, int); Cell(const Cell&); virtual ~Cell(); virtual int getNumProc()const; virtual void setNumProc(int); virtual int getNumFile()const; virtual void setNumFile(int); virtual int getTTL()const; virtual void setTTL(int); virtual char getType()const; virtual void setType(char); virtual float getDate()const; virtual void setDate(float); virtual Cell* getSuiv()const; virtual void setSuiv(Cell*); virtual Cell* getPrec()const; virtual void setPrec(Cell*); }; #endif