Rocstar  1.0
Rocstar multiphysics simulation application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
ElementList::Elem Struct Reference
Collaboration diagram for ElementList::Elem:

Public Member Functions

 Elem ()
 
 Elem (Element *val, Elem *next=0)
 
 ~Elem ()
 

Public Attributes

Elementd_val
 
Elemd_next
 

Detailed Description

Definition at line 35 of file ElementList.hpp.

Constructor & Destructor Documentation

Elem ( )
inline

Definition at line 39 of file ElementList.hpp.

39 : d_val(0), d_next(0) {}
Elem ( Element val,
Elem next = 0 
)
inline

Definition at line 40 of file ElementList.hpp.

40  :
41  d_val(val), d_next(next) {}
~Elem ( )
inline

Definition at line 43 of file ElementList.hpp.

References d_next.

43  {
44  if( d_next ) delete d_next;
45  }

Member Data Documentation


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