LLink is a PowerPlant class that is used for a simple linked list implementation.
Methods :
The methods in this class are:
Data Members:
The data members in this class are:
Operation:
Use SetLink() and GetLink(). Like duh, that's all that's here. You typically don't use this class directly. It serves as a base class for custom subclasses. A typical subclass of LLink adds data members that store data you want to pass between threads in an LQueue object.
Source files:
See also:
Purpose:
The constructor creates the object.
Access :
Prototype:
LLink();
LLink (LLink* inLinkP);Parameters:
Purpose:
The destructor destroys the LLink object.
Access :
Prototype:
virtual ~LLink();
Purpose:
Returns the contents of the link field.
Access :
Prototype:
inline LLink* GetLink() const;Parameters:
Return:
Purpose:
Access :
Prototype:
inline void SetLink(LLink* inLinkP);Parameters:
Return:
Purpose:
Access :
Prototype:
LLink* mLink;