MOAB: Mesh Oriented datABase  (version 5.4.1)
MBMesquite::IQInterface Class Reference

#include <IQInterface.hpp>

+ Inheritance diagram for MBMesquite::IQInterface:
+ Collaboration diagram for MBMesquite::IQInterface:

Public Member Functions

virtual ~IQInterface ()
void run_instructions (MeshDomainAssoc *mesh_and_domain, MsqError &err)
void run_instructions (Mesh *mesh, MsqError &err)
void run_instructions (ParallelMesh *mesh, MeshDomain *domain, MsqError &err)
void run_instructions (ParallelMesh *mesh, MsqError &err)

Protected Member Functions

virtual void run_common (MeshDomainAssoc *mesh_and_domain, ParallelMesh *pmesh, Settings *settings, MsqError &err)=0

Detailed Description

Definition at line 45 of file IQInterface.hpp.


Constructor & Destructor Documentation

Definition at line 37 of file IQInterface.cpp.

{}

Member Function Documentation

virtual void MBMesquite::IQInterface::run_common ( MeshDomainAssoc mesh_and_domain,
ParallelMesh pmesh,
Settings settings,
MsqError err 
) [protected, pure virtual]
void MBMesquite::IQInterface::run_instructions ( Mesh mesh,
MsqError err 
) [inline]

Definition at line 55 of file IQInterface.hpp.

    {
        MeshDomainAssoc mesh_and_domain = MeshDomainAssoc( mesh, 0 );
        this->run_common( &mesh_and_domain, 0, this, err );
    }
void MBMesquite::IQInterface::run_instructions ( ParallelMesh mesh,
MeshDomain domain,
MsqError err 
) [inline]

Definition at line 61 of file IQInterface.hpp.

    {
        MeshDomainAssoc mesh_and_domain = MeshDomainAssoc( (Mesh*)mesh, domain );
        this->run_common( &mesh_and_domain, mesh, this, err );
    }
void MBMesquite::IQInterface::run_instructions ( ParallelMesh mesh,
MsqError err 
) [inline]

Definition at line 67 of file IQInterface.hpp.

    {
        MeshDomainAssoc mesh_and_domain = MeshDomainAssoc( (Mesh*)mesh, 0 );
        this->run_common( &mesh_and_domain, mesh, this, err );
    }

List of all members.


The documentation for this class was generated from the following files:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines