ITK  4.4.0
Insight Segmentation and Registration Toolkit
itkIPLFileNameList.h File Reference
#include "itkMacro.h"
#include "itkObject.h"
#include <cstdio>
#include <string>
#include <list>
+ Include dependency graph for itkIPLFileNameList.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define IPLSetMacro(name, type)
 
#define IPLGetMacro(name, type)
 

Macro Definition Documentation

#define IPLGetMacro (   name,
  type 
)
Value:
virtual type Get##name () \
{ \
return this->m_##name; \
}

Get built-in type. Creates member Get"name"() (e.g., GetVisibility());

Definition at line 49 of file itkIPLFileNameList.h.

#define IPLSetMacro (   name,
  type 
)
Value:
virtual void Set##name (const type _arg) \
{ \
if ( this->m_##name != _arg ) \
{ \
this->m_##name = _arg; \
} \
}

Set built-in type. Creates member Set"name"() (e.g., SetVisibility());

Definition at line 38 of file itkIPLFileNameList.h.