QGIS API Documentation  2.18.21-Las Palmas (9fba24a)
Public Member Functions | Protected Attributes | List of all members
Node Class Reference

Node is a class used by Line3D. More...

#include <Node.h>

Public Member Functions

 Node ()
 
 Node (const Node &n)
 
 ~Node ()
 
NodegetNext () const
 Returns a pointer to the next element in the linked list. More...
 
Point3DgetPoint () const
 Returns a pointer to the Point3D object associated with the node. More...
 
Nodeoperator= (const Node &n)
 
void setNext (Node *n)
 Sets the pointer to the next node. More...
 
void setPoint (Point3D *p)
 Sets a new pointer to an associated Point3D object. More...
 

Protected Attributes

NodemNext
 Pointer to the next Node in the linked list. More...
 
Point3DmPoint
 Pointer to the Point3D object associated with the node. More...
 

Detailed Description

Node is a class used by Line3D.

It represents a node in the single directed linked list. Associated Point3D objects are deleted when the node is deleted.

Definition at line 24 of file Node.h.

Constructor & Destructor Documentation

◆ Node() [1/2]

Node::Node ( )
inline

Definition at line 46 of file Node.h.

◆ Node() [2/2]

Node::Node ( const Node n)

◆ ~Node()

Node::~Node ( )
inline

Definition at line 53 of file Node.h.

Member Function Documentation

◆ getNext()

Node * Node::getNext ( ) const
inline

Returns a pointer to the next element in the linked list.

Definition at line 58 of file Node.h.

◆ getPoint()

Point3D * Node::getPoint ( ) const
inline

Returns a pointer to the Point3D object associated with the node.

Definition at line 63 of file Node.h.

◆ operator=()

Node& Node::operator= ( const Node n)

◆ setNext()

void Node::setNext ( Node n)
inline

Sets the pointer to the next node.

Definition at line 68 of file Node.h.

◆ setPoint()

void Node::setPoint ( Point3D p)
inline

Sets a new pointer to an associated Point3D object.

Definition at line 73 of file Node.h.

Member Data Documentation

◆ mNext

Node* Node::mNext
protected

Pointer to the next Node in the linked list.

Definition at line 30 of file Node.h.

◆ mPoint

Point3D* Node::mPoint
protected

Pointer to the Point3D object associated with the node.

Definition at line 28 of file Node.h.


The documentation for this class was generated from the following file: