[ First ]  [ Previous ]  [ Next ]  [ Last ]  [ Manuals ]

 

LLink



Overview:

LLink is a PowerPlant class that is used for a simple linked list implementation.

Methods :

The methods in this class are:

 

LLink()  
~LLink()  
GetLink()  
SetLink()  

Data Members:

The data members in this class are:

 

mLink  
 

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:

(Thread Classes)

LLink.h

LLink.cp

See also:

LQueue

LLink()

Purpose:

The constructor creates the object.

Access :

Public

Prototype:

LLink();

LLink (LLink* inLinkP);
Parameters:

A pointer to a link.

~LLink()

Purpose:

The destructor destroys the LLink object.

Access :

Virtual

Prototype:

virtual ~LLink();

GetLink()

Purpose:

Returns the contents of the link field.

Access :

Inline, Public

Prototype:

inline LLink* GetLink() const;
Parameters:

None

Return:

The link

SetLink()

Purpose:

Changes the link field.

Access :

Inline, Public

Prototype:

inline void SetLink(LLink* inLinkP);
Parameters:

A pointer to the link to set.

Return:

None

mLink

Purpose:

The link

Access :

Protected

Prototype:

LLink*		mLink;

 


[ First ]  [ Previous ]  [ Next ]  [ Last ]  [ Manuals ]

Visit the Metrowerks website at: http://www.metrowerks.com
For assistance contact Metrowerks Technical Support at: cw_support@metrowerks.com
Copyright © 2000, Metrowerks Corp. All rights reserved.

Last updated: July 21, 2000