Guest User

cmlist.h

a guest
May 25th, 2014
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.27 KB | None | 0 0
  1. #ifndef CMLIST_H
  2. #define CMLIST_H
  3.  
  4. class cMlist
  5. {
  6.  
  7.  
  8. private:
  9.  
  10.  
  11. protected:
  12.  
  13.     cMlist *previos;
  14.     cMlist *next;
  15.  
  16. public:
  17.     int number;
  18.     static unsigned int total;
  19.     cMlist();
  20.     cMlist(cMlist *prev);
  21.     ~cMlist();
  22. };
  23.  
  24. #endif // CMLIST_H
Advertisement
Add Comment
Please, Sign In to add comment