#ifndef _LLN_ #define _LLN_ #include #include #include #include "QObj.h" using namespace std; class QObj; class LLN { private: QObj * info; LLN * next; public: LLN (QObj * obj); ~LLN (); LLN * getnext (); QObj * getinfo (); void setnext (LLN *n); void setinfo (QObj * obj); }; #endif