MBDyn-1.7.3
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups
SparseMatrixHandler::SparseMatrixElement_base Struct Reference

#include <spmh.h>

Inheritance diagram for SparseMatrixHandler::SparseMatrixElement_base:
Collaboration diagram for SparseMatrixHandler::SparseMatrixElement_base:

Public Member Functions

 SparseMatrixElement_base (void)
 
 SparseMatrixElement_base (integer iRow, integer iCol)
 
virtual ~SparseMatrixElement_base (void)
 
bool operator== (const SparseMatrixElement_base &op) const
 
bool operator!= (const SparseMatrixElement_base &op) const
 

Public Attributes

integer iRow
 
integer iCol
 

Detailed Description

Definition at line 57 of file spmh.h.

Constructor & Destructor Documentation

SparseMatrixHandler::SparseMatrixElement_base::SparseMatrixElement_base ( void  )
inline

Definition at line 61 of file spmh.h.

References NO_OP.

SparseMatrixHandler::SparseMatrixElement_base::SparseMatrixElement_base ( integer  iRow,
integer  iCol 
)
inline

Definition at line 63 of file spmh.h.

References NO_OP.

virtual SparseMatrixHandler::SparseMatrixElement_base::~SparseMatrixElement_base ( void  )
inlinevirtual

Definition at line 65 of file spmh.h.

References NO_OP.

65 { NO_OP; };
#define NO_OP
Definition: myassert.h:74

Member Function Documentation

Definition at line 68 of file spmh.h.

References iCol, and iRow.

69  { return iRow != op.iRow || iCol != op.iCol; };
bool SparseMatrixHandler::SparseMatrixElement_base::operator== ( const SparseMatrixElement_base op) const
inline

Definition at line 66 of file spmh.h.

References iCol, and iRow.

67  { return iRow == op.iRow && iCol == op.iCol; };

Member Data Documentation


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