MOAB: Mesh Oriented datABase  (version 5.4.1)
moab::Tqdcfr::MetaDataContainer::MetaDataEntry Class Reference

#include <Tqdcfr.hpp>

+ Collaboration diagram for moab::Tqdcfr::MetaDataContainer::MetaDataEntry:

Public Member Functions

 MetaDataEntry ()
void print ()

Public Attributes

unsigned int mdOwner
unsigned int mdDataType
unsigned int mdIntValue
std::string mdName
std::string mdStringValue
std::vector< unsigned int > mdIntArrayValue
double mdDblValue
std::vector< double > mdDblArrayValue

Detailed Description

Definition at line 96 of file Tqdcfr.hpp.


Constructor & Destructor Documentation

Definition at line 2994 of file Tqdcfr.cpp.

    : mdOwner( 0 ), mdDataType( 0 ), mdIntValue( 0 ), mdName( "(uninit)" ), mdStringValue( "(uninit)" ), mdDblValue( 0 )
{
}

Member Function Documentation

Definition at line 2999 of file Tqdcfr.cpp.

{
    std::cout << "MetaDataEntry:own, typ, name, I, D, S = " << mdOwner << ", " << mdDataType << ", " << mdName << ", "
              << mdIntValue << ", " << mdDblValue << ", " << mdStringValue;
    unsigned int i;
    if( mdIntArrayValue.size() )
    {
        std::cout << std::endl << "IArray = " << mdIntArrayValue[0];
        for( i = 1; i < mdIntArrayValue.size(); i++ )
            std::cout << ", " << mdIntArrayValue[i];
    }
    if( mdDblArrayValue.size() )
    {
        std::cout << std::endl << "DArray = " << mdDblArrayValue[0];
        for( i = 1; i < mdDblArrayValue.size(); i++ )
            std::cout << ", " << mdDblArrayValue[i];
    }
    std::cout << std::endl;
}

Member Data Documentation

Definition at line 103 of file Tqdcfr.hpp.

Definition at line 101 of file Tqdcfr.hpp.

Referenced by moab::Tqdcfr::read_nodes().

Definition at line 99 of file Tqdcfr.hpp.

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