moab
moab::Tqdcfr::MetaDataContainer::MetaDataEntry Class Reference

#include <Tqdcfr.hpp>

List of all members.

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 99 of file Tqdcfr.hpp.


Constructor & Destructor Documentation

Definition at line 2842 of file Tqdcfr.cpp.

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

Member Function Documentation

Definition at line 2847 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 106 of file Tqdcfr.hpp.

Definition at line 104 of file Tqdcfr.hpp.


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