Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #ifndef CMLIST_H
- #define CMLIST_H
- class cMlist
- {
- private:
- protected:
- cMlist *previos;
- cMlist *next;
- public:
- int number;
- static unsigned int total;
- cMlist();
- cMlist(cMlist *prev);
- ~cMlist();
- };
- #endif // CMLIST_H
Advertisement
Add Comment
Please, Sign In to add comment