diff options
Diffstat (limited to 'Src/WAT/wat_nodeptr.h')
-rw-r--r-- | Src/WAT/wat_nodeptr.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Src/WAT/wat_nodeptr.h b/Src/WAT/wat_nodeptr.h new file mode 100644 index 00000000..27edc0e7 --- /dev/null +++ b/Src/WAT/wat_nodeptr.h @@ -0,0 +1,23 @@ +#pragma once +#ifndef _WA_LISTS_NODEPTR +#define _WA_LISTS_NODEPTR + +namespace wa +{ + namespace lists + { + struct node_ptr + { + node_ptr* next; + node_ptr* prev; + + node_ptr() : + next(0), prev(0) + { + + } + }; + } +} + +#endif
\ No newline at end of file |