Go to the source code of this file.
|  | 
| #define | vtkMakeExportedMappedUnstructuredGrid(_className,  _impl,  _exportDecl) | 
|  | 
| #define | vtkMakeExportedMappedUnstructuredGridWithIter(_className,  _impl,  _cIter,  _exportDecl) | 
|  | 
| #define | vtkMakeMappedUnstructuredGrid(_className,  _impl)   vtkMakeExportedMappedUnstructuredGrid(_className, _impl, ) | 
|  | 
| #define | vtkMakeMappedUnstructuredGridWithIter(_className,  _impl,  _cIter,  _exportDecl)   vtkMakeExportedMappedUnstructuredGridWithIter(_className, _impl, _cIter, ) | 
|  | 
◆ vtkMakeExportedMappedUnstructuredGrid
      
        
          | #define vtkMakeExportedMappedUnstructuredGrid | ( |  | _className, | 
        
          |  |  |  | _impl, | 
        
          |  |  |  | _exportDecl | 
        
          |  | ) |  |  | 
      
 
Value:
  {                                                                                                \
  public:                                                                                          \
    static _className* 
New();                                                                      \
                                                                                                   \
  protected:                                                                                       \
    _className()                                                                                   \
    {                                                                                              \
      _impl* i = _impl::New();                                                                     \
      this->SetImplementation(i);                                                                  \
      i->Delete();                                                                                 \
    }                                                                                              \
    ~_className() override {}                                                                      \
                                                                                                   \
  private:                                                                                         \
    _className(const _className&);                                                                 \
    void operator=(const _className&);                                                             \
  }
 
Definition at line 208 of file vtkMappedUnstructuredGrid.h.
 
 
◆ vtkMakeExportedMappedUnstructuredGridWithIter
      
        
          | #define vtkMakeExportedMappedUnstructuredGridWithIter | ( |  | _className, | 
        
          |  |  |  | _impl, | 
        
          |  |  |  | _cIter, | 
        
          |  |  |  | _exportDecl | 
        
          |  | ) |  |  | 
      
 
Value:
  {                                                                                                \
  public:                                                                                          \
    static _className* 
New();                                                                      \
                                                                                                   \
  protected:                                                                                       \
    _className()                                                                                   \
    {                                                                                              \
      _impl* i = _impl::New();                                                                     \
      this->SetImplementation(i);                                                                  \
      i->Delete();                                                                                 \
    }                                                                                              \
    ~_className() override {}                                                                      \
                                                                                                   \
  private:                                                                                         \
    _className(const _className&);                                                                 \
    void operator=(const _className&);                                                             \
  }
 
Definition at line 229 of file vtkMappedUnstructuredGrid.h.
 
 
◆ vtkMakeMappedUnstructuredGrid
◆ vtkMakeMappedUnstructuredGridWithIter