ITK  4.8.0
Insight Segmentation and Registration Toolkit
Classes | Namespaces | Macros | Functions
itkMetaDataObject.h File Reference
#include "itkMetaDataDictionary.h"
#include "itkMacro.h"
#include "itkArray.h"
#include "itkMatrix.h"
#include <cstring>
#include "itkMetaDataObject.hxx"
+ Include dependency graph for itkMetaDataObject.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  itk::MetaDataObject< MetaDataObjectType >
 

Namespaces

 itk
 

Macros

#define ITK_IMAGE_TYPE_METADATAPRINT(STORAGE_TYPE)
 
#define ITK_NATIVE_TYPE_METADATAPRINT(TYPE_NAME)
 
#define ITK_OBJECT_TYPE_METADATAPRINT_1COMMA(TYPE_NAME_PART1, TYPE_NAME_PART2)
 
#define ITKCommon_EXPORT_EXPLICIT   ITKCommon_EXPORT
 

Functions

template<typename T >
void itk::EncapsulateMetaData (MetaDataDictionary &Dictionary, const char *key, const T &invalue)
 
template<typename T >
bool itk::ExposeMetaData (const MetaDataDictionary &Dictionary, const std::string key, T &outval)
 
template<typename T >
void itk::EncapsulateMetaData (MetaDataDictionary &Dictionary, const std::string &key, const T &invalue)
 

Macro Definition Documentation

#define ITK_IMAGE_TYPE_METADATAPRINT (   STORAGE_TYPE)
#define ITK_NATIVE_TYPE_METADATAPRINT (   TYPE_NAME)
Value:
template< > \
void \
::itk::MetaDataObject< TYPE_NAME > \
::Print(std::ostream & os) const \
{ \
os << this->m_MetaDataObjectValue << std::endl; \
} \

An ugly macro to facilitate creating a simple implementation of the MetaDataObject<Type>::Print() function for types that have operator<< defined.

Parameters
TYPE_NAMEthe native type parameter type

Definition at line 237 of file itkMetaDataObject.h.

#define ITK_OBJECT_TYPE_METADATAPRINT_1COMMA (   TYPE_NAME_PART1,
  TYPE_NAME_PART2 
)
Value:
template< > \
void \
itk::MetaDataObject< TYPE_NAME_PART1, TYPE_NAME_PART2 > \
::Print(std::ostream & os) const \
{ \
this->m_MetaDataObjectValue->Print(os); \
} \

An ugly macro to facilitate creating a simple implementation of the MetaDataObject< Type >::Print() function for itk::Objects that have 1 comma in their type definition.

Parameters
TYPE_NAME_PART1
TYPE_NAME_PART2

Definition at line 254 of file itkMetaDataObject.h.

#define ITKCommon_EXPORT_EXPLICIT   ITKCommon_EXPORT

Definition at line 201 of file itkMetaDataObject.h.