#include <PionLockFreeQueue.hpp>
Definition at line 57 of file PionLockFreeQueue.hpp.
Public Member Functions | |
QueueNode (void) | |
default constructor | |
QueueNode (const T &d) | |
constructs QueueNode with a data value | |
Public Attributes | |
boost::lockfree::tagged_ptr< QueueNode > | next |
points to the next node in the queue | |
T | data |
data wrapped by the node item |