wat_nodeptr.h 232 B

1234567891011121314151617181920212223
  1. #pragma once
  2. #ifndef _WA_LISTS_NODEPTR
  3. #define _WA_LISTS_NODEPTR
  4. namespace wa
  5. {
  6. namespace lists
  7. {
  8. struct node_ptr
  9. {
  10. node_ptr* next;
  11. node_ptr* prev;
  12. node_ptr() :
  13. next(0), prev(0)
  14. {
  15. }
  16. };
  17. }
  18. }
  19. #endif