class Content { public: Content(int); Content(int,Content*); int getVal(); Content* getNext(); private: Content* next; int val; };