Rocstar  1.0
Rocstar multiphysics simulation application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
T3DGeomEnt Class Reference
Inheritance diagram for T3DGeomEnt:
Collaboration diagram for T3DGeomEnt:

Public Member Functions

 T3DGeomEnt ()
 
 T3DGeomEnt (const T3DGeomEnt &ing)
 
const T3DGeomEntoperator= (const T3DGeomEnt &ing)
 
bool operator< (const T3DGeomEnt &ge) const
 
bool operator== (const T3DGeomEnt &ge) const
 

Detailed Description

Definition at line 14 of file t3d2mesh.C.

Constructor & Destructor Documentation

T3DGeomEnt ( )
inline

Definition at line 17 of file t3d2mesh.C.

17  : std::pair<unsigned int,unsigned int>()
18  {};
T3DGeomEnt ( const T3DGeomEnt ing)
inline

Definition at line 19 of file t3d2mesh.C.

20  {
21  this->first = ing.first;
22  this->second = ing.second;
23  };

Member Function Documentation

bool operator< ( const T3DGeomEnt ge) const
inline

Definition at line 30 of file t3d2mesh.C.

30  { return (first < ge.first ? true :
31  first > ge.first ? false : second < ge.second); };
const T3DGeomEnt& operator= ( const T3DGeomEnt ing)
inline

Definition at line 24 of file t3d2mesh.C.

25  {
26  this->first = ing.first;
27  this->second = ing.second;
28  return(*this);
29  };
bool operator== ( const T3DGeomEnt ge) const
inline

Definition at line 32 of file t3d2mesh.C.

32 { return (first == ge.first ? second==ge.second : false); };

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